java/sql-dk/pom.xml
branchv_0
changeset 253 d8442b266ca8
parent 244 6bdb45af26d9
     1.1 --- a/java/sql-dk/pom.xml	Sat Jul 25 17:25:19 2020 +0200
     1.2 +++ b/java/sql-dk/pom.xml	Sun Sep 13 12:01:35 2020 +0200
     1.3 @@ -15,6 +15,17 @@
     1.4  	
     1.5  	<dependencies>
     1.6  		<dependency>
     1.7 +			<groupId>jakarta.xml.bind</groupId>
     1.8 +			<artifactId>jakarta.xml.bind-api</artifactId>
     1.9 +			<version>2.3.3</version>
    1.10 +		</dependency>
    1.11 +		<dependency>
    1.12 +			<groupId>com.sun.xml.bind</groupId>
    1.13 +			<artifactId>jaxb-impl</artifactId>
    1.14 +			<version>2.3.3</version>
    1.15 +			<scope>runtime</scope>
    1.16 +		</dependency>
    1.17 +		<dependency>
    1.18  			<groupId>org.junit.jupiter</groupId>
    1.19  			<artifactId>junit-jupiter-engine</artifactId>
    1.20  			<version>${junit.version}</version>
    1.21 @@ -86,6 +97,22 @@
    1.22  					</dependency>
    1.23  				</dependencies>
    1.24  			</plugin>
    1.25 +			<plugin>
    1.26 +				<artifactId>maven-dependency-plugin</artifactId>
    1.27 +				<version>3.1.1</version>
    1.28 +				<executions>
    1.29 +					<execution>
    1.30 +						<phase>process-sources</phase>
    1.31 +						<goals>
    1.32 +							<goal>copy-dependencies</goal>
    1.33 +						</goals>
    1.34 +						<configuration>
    1.35 +							<outputDirectory>${project.build.directory}/lib</outputDirectory>
    1.36 +							<includeScope>runtime</includeScope>
    1.37 +						</configuration>
    1.38 +					</execution>
    1.39 +				</executions>
    1.40 +			</plugin>
    1.41  		</plugins>
    1.42  	</build>
    1.43