-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
wagarzon
committed
Apr 27, 2020
1 parent
992fc0a
commit 7bbecd3
Showing
232 changed files
with
2,408 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<artifactId>LIBRARIES</artifactId> | ||
<groupId>com.bbva.qtdi</groupId> | ||
<version>0.0.1</version> | ||
</parent> | ||
|
||
<groupId>com.bbva.qtdi</groupId> | ||
|
||
<artifactId>QTDIR002</artifactId> | ||
<name>QTDIR002</name> | ||
<version>0.0.1</version> | ||
<packaging>bundle</packaging> | ||
|
||
<properties> | ||
<osgi.version.manifest>0.0</osgi.version.manifest> | ||
<bundle-library-name>${project.artifactId}-${project.version}</bundle-library-name> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.bbva.elara</groupId> | ||
<artifactId>elara-aspect</artifactId> | ||
<version>${apx.core.online.version}</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bbva.elara</groupId> | ||
<artifactId>elara-library</artifactId> | ||
<version>${apx.core.online.version}</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.gemini</groupId> | ||
<artifactId>org.eclipse.gemini.blueprint.core</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>org.apache.felix.framework</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-beans</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-core</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bbva.elara</groupId> | ||
<artifactId>elara-configuration-manager-application</artifactId> | ||
<version>${apx.core.online.version}</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.bbva.elara</groupId> | ||
<artifactId>elara-utility-log</artifactId> | ||
<version>${apx.core.online.version}</version> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<!-- DTO's --> | ||
<dependency> | ||
<groupId>com.bbva.qtdi.employees.dto</groupId> | ||
<artifactId>QTDIC001</artifactId> | ||
<version>0.0.1</version> | ||
</dependency> | ||
|
||
<!-- Dependencias test --> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<finalName>${project.artifactId}</finalName> | ||
<plugins> | ||
|
||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Bundle-SymbolicName>${bundle-library-name}</Bundle-SymbolicName> | ||
<Bundle-Category>library-jdbc</Bundle-Category> | ||
<Import-Package> | ||
com.bbva.qtdi.employees.dto.*;version="${osgi.version.manifest}", | ||
com.bbva.qtdi.lib.r002.*;version="${osgi.version.manifest}", | ||
com.bbva.elara.*;version="${osgi.version.manifest}" | ||
;resolution:="optional", | ||
org.osgi.framework;version="${osgi.version.manifest}";resolution:="optional", | ||
com.bbva.elara.aspect;version="${osgi.version.manifest}";resolution:="optional", | ||
spring;version="${osgi.version.manifest}";resolution:="optional", org.springframework.aop;version="${osgi.version.manifest}";resolution:="optional", | ||
org.springframework.aop.framework;version="${osgi.version.manifest}";resolution:="optional", | ||
org.aopalliance.aop;version="${osgi.version.manifest}";resolution:="optional", | ||
*;version="${osgi.version.manifest}" | ||
</Import-Package> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
|
||
|
||
<plugin> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<phase>install</phase> | ||
<configuration> | ||
<tasks> | ||
<copy todir="${outputDirectoryLibraries}" file="./target/${project.artifactId}.jar"> | ||
</copy> | ||
</tasks> | ||
</configuration> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
7 changes: 7 additions & 0 deletions
7
artifact/libraries/QTDIR002/src/main/java/com/bbva/qtdi/lib/r002/QTDIR002.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.bbva.qtdi.lib.r002; | ||
|
||
public interface QTDIR002 { | ||
|
||
void execute(); | ||
|
||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Oops, something went wrong.