1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-02 01:02:55 +00:00

Issue #19: Kopiere class-Dateien aus bestehender JAR-Datei des Plugins ATC-Codes

This commit is contained in:
2023-03-30 00:29:15 +02:00
parent 4f026b684b
commit a47d6279cf
2 changed files with 33 additions and 1 deletions

32
pom.xml
View File

@ -26,6 +26,14 @@
<systemPath>${project.basedir}/libs/onkostar-api-2.11.1.1.jar</systemPath>
</dependency>
<dependency>
<groupId>de.ukw</groupId>
<artifactId>onkostar-plugin-atccodes</artifactId>
<version>0.4.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/onkostar-plugin-atccodes-0.4.0.jar</systemPath>
</dependency>
<!-- Hibernate -->
<dependency>
<groupId>org.hibernate</groupId>
@ -142,6 +150,30 @@
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.22.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<outputDirectory>
${project.build.directory}/classes/
</outputDirectory>
<includes>
de/ukw/ccc/**/*.class
</includes>
<excludeTransitive>true</excludeTransitive>
<includeScope>system</includeScope>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

View File

@ -22,7 +22,7 @@
<constructor-arg ref="consentManagerServiceFactory" />
</bean>
<context:component-scan base-package="ATCCodes" />
<context:component-scan base-package="de.ukw.ccc.onkostar.atccodes" />
<context:component-scan base-package="DNPM.config" />
<mvc:resources mapping="/app/lib/umr/**" location="classpath:/app/lib/umr/" />