|
@@ -8,7 +8,7 @@
|
|
<version>2.1.5.RELEASE</version>
|
|
<version>2.1.5.RELEASE</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
</parent>
|
|
- <groupId>com.jkcredit</groupId>
|
|
|
|
|
|
+ <groupId>com.jkcredit.invoice.hub</groupId>
|
|
<artifactId>invoice-hub</artifactId>
|
|
<artifactId>invoice-hub</artifactId>
|
|
<version>1.0</version>
|
|
<version>1.0</version>
|
|
<name>invoice-hub</name>
|
|
<name>invoice-hub</name>
|
|
@@ -198,15 +198,15 @@
|
|
<systemPath>${project.basedir}/src/main/resources/lib/etc-jackson-databind-2.8.jar</systemPath>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/etc-jackson-databind-2.8.jar</systemPath>
|
|
</dependency>
|
|
</dependency>
|
|
<dependency>
|
|
<dependency>
|
|
- <groupId>etc.jackson.datatype-jsr310</groupId>
|
|
|
|
|
|
+ <groupId>etc.jackson.datatype.jsr310</groupId>
|
|
<artifactId>etc-jackson-datatype-jsr310</artifactId>
|
|
<artifactId>etc-jackson-datatype-jsr310</artifactId>
|
|
<version>${jackson.datatype.version}</version>
|
|
<version>${jackson.datatype.version}</version>
|
|
<scope>system</scope>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/etc-jackson-datatype-jsr310-2.8.jar</systemPath>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/etc-jackson-datatype-jsr310-2.8.jar</systemPath>
|
|
</dependency>
|
|
</dependency>
|
|
<dependency>
|
|
<dependency>
|
|
- <groupId>sdk.common</groupId>
|
|
|
|
- <artifactId>sdk-common</artifactId>
|
|
|
|
|
|
+ <groupId>etc.sdk.common</groupId>
|
|
|
|
+ <artifactId>etc-common</artifactId>
|
|
<version>${sdk.common.version}</version>
|
|
<version>${sdk.common.version}</version>
|
|
<scope>system</scope>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/sdk-common-1.0.jar</systemPath>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/sdk-common-1.0.jar</systemPath>
|
|
@@ -232,11 +232,6 @@
|
|
<scope>system</scope>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/validation-api-1.1.0.Final.jar</systemPath>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/validation-api-1.1.0.Final.jar</systemPath>
|
|
</dependency>
|
|
</dependency>
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.retry</groupId>
|
|
|
|
- <artifactId>spring-retry</artifactId>
|
|
|
|
- <version>1.2.4.RELEASE</version>
|
|
|
|
- </dependency>
|
|
|
|
</dependencies>
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
<build>
|
|
@@ -244,8 +239,53 @@
|
|
<plugin>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
+ <configuration>
|
|
|
|
+ <includeSystemScope>true</includeSystemScope>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-resources-plugin</artifactId>
|
|
|
|
+ </plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-resources-plugin</artifactId>
|
|
|
|
+ <executions>
|
|
|
|
+ <execution>
|
|
|
|
+ <id>default-resources</id>
|
|
|
|
+ <phase>validate</phase>
|
|
|
|
+ <goals>
|
|
|
|
+ <goal>copy-resources</goal>
|
|
|
|
+ </goals>
|
|
|
|
+ <configuration>
|
|
|
|
+ <outputDirectory>target/classes</outputDirectory>
|
|
|
|
+ <useDefaultDelimiters>false</useDefaultDelimiters>
|
|
|
|
+ <delimiters>
|
|
|
|
+ <delimiter>@</delimiter>
|
|
|
|
+ </delimiters>
|
|
|
|
+ <resources>
|
|
|
|
+ <resource>
|
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
|
+ <filtering>true</filtering>
|
|
|
|
+ <includes>
|
|
|
|
+ <include>**</include>
|
|
|
|
+ </includes>
|
|
|
|
+ </resource>
|
|
|
|
+ </resources>
|
|
|
|
+ </configuration>
|
|
|
|
+ </execution>
|
|
|
|
+ </executions>
|
|
</plugin>
|
|
</plugin>
|
|
</plugins>
|
|
</plugins>
|
|
|
|
+ <resources>
|
|
|
|
+ <resource>
|
|
|
|
+ <targetPath>lib/</targetPath>
|
|
|
|
+ <directory>lib/</directory>
|
|
|
|
+ <includes>
|
|
|
|
+ <include>**/sdk-common-1.0.jar</include>
|
|
|
|
+ </includes>
|
|
|
|
+ </resource>
|
|
|
|
+ </resources>
|
|
</build>
|
|
</build>
|
|
|
|
|
|
</project>
|
|
</project>
|