|
|
@ -93,6 +93,9 @@
|
|
|
|
<groupId>com.sap</groupId>
|
|
|
|
<groupId>com.sap</groupId>
|
|
|
|
<artifactId>sapjco3</artifactId>
|
|
|
|
<artifactId>sapjco3</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
|
|
<scope>system</scope>
|
|
|
|
|
|
|
|
<systemPath>${project.basedir}/src/main/lib/sapjco3.jar</systemPath>
|
|
|
|
|
|
|
|
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<groupId>junit</groupId>
|
|
|
@ -115,7 +118,35 @@
|
|
|
|
</execution>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
|
|
<source>1.8</source>
|
|
|
|
|
|
|
|
<target>1.8</target>
|
|
|
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
|
|
|
<compilerArguments>
|
|
|
|
|
|
|
|
<extdirs>${project.basedir}/lib</extdirs>
|
|
|
|
|
|
|
|
</compilerArguments>
|
|
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
|
|
|
|
<resource>
|
|
|
|
|
|
|
|
<directory>${project.basedir}/src/main/lib</directory>
|
|
|
|
|
|
|
|
<targetPath>BOOT-INF/lib/</targetPath>
|
|
|
|
|
|
|
|
<includes>
|
|
|
|
|
|
|
|
<include>**/*.jar</include>
|
|
|
|
|
|
|
|
</includes>
|
|
|
|
|
|
|
|
</resource>
|
|
|
|
|
|
|
|
<resource>
|
|
|
|
|
|
|
|
<directory>${project.basedir}/src/main/lib</directory>
|
|
|
|
|
|
|
|
<targetPath>BOOT-INF</targetPath>
|
|
|
|
|
|
|
|
<includes>
|
|
|
|
|
|
|
|
<include>**/*.so</include>
|
|
|
|
|
|
|
|
<include>**/*.dll</include>
|
|
|
|
|
|
|
|
</includes>
|
|
|
|
|
|
|
|
</resource>
|
|
|
|
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|
|
|
|
</project>
|
|
|
|