java/sql-dk/pom.xml
branchv_0
changeset 253 d8442b266ca8
parent 244 6bdb45af26d9
equal deleted inserted replaced
252:a9d4a8d5c57f 253:d8442b266ca8
    12 		<maven.compiler.target>1.8</maven.compiler.target>
    12 		<maven.compiler.target>1.8</maven.compiler.target>
    13 		<junit.version>5.4.0</junit.version>
    13 		<junit.version>5.4.0</junit.version>
    14 	</properties>
    14 	</properties>
    15 	
    15 	
    16 	<dependencies>
    16 	<dependencies>
       
    17 		<dependency>
       
    18 			<groupId>jakarta.xml.bind</groupId>
       
    19 			<artifactId>jakarta.xml.bind-api</artifactId>
       
    20 			<version>2.3.3</version>
       
    21 		</dependency>
       
    22 		<dependency>
       
    23 			<groupId>com.sun.xml.bind</groupId>
       
    24 			<artifactId>jaxb-impl</artifactId>
       
    25 			<version>2.3.3</version>
       
    26 			<scope>runtime</scope>
       
    27 		</dependency>
    17 		<dependency>
    28 		<dependency>
    18 			<groupId>org.junit.jupiter</groupId>
    29 			<groupId>org.junit.jupiter</groupId>
    19 			<artifactId>junit-jupiter-engine</artifactId>
    30 			<artifactId>junit-jupiter-engine</artifactId>
    20 			<version>${junit.version}</version>
    31 			<version>${junit.version}</version>
    21 			<scope>test</scope>
    32 			<scope>test</scope>
    84 						<artifactId>junit-platform-surefire-provider</artifactId>
    95 						<artifactId>junit-platform-surefire-provider</artifactId>
    85 						<version>1.2.0</version>
    96 						<version>1.2.0</version>
    86 					</dependency>
    97 					</dependency>
    87 				</dependencies>
    98 				</dependencies>
    88 			</plugin>
    99 			</plugin>
       
   100 			<plugin>
       
   101 				<artifactId>maven-dependency-plugin</artifactId>
       
   102 				<version>3.1.1</version>
       
   103 				<executions>
       
   104 					<execution>
       
   105 						<phase>process-sources</phase>
       
   106 						<goals>
       
   107 							<goal>copy-dependencies</goal>
       
   108 						</goals>
       
   109 						<configuration>
       
   110 							<outputDirectory>${project.build.directory}/lib</outputDirectory>
       
   111 							<includeScope>runtime</includeScope>
       
   112 						</configuration>
       
   113 					</execution>
       
   114 				</executions>
       
   115 			</plugin>
    89 		</plugins>
   116 		</plugins>
    90 	</build>
   117 	</build>
    91 	
   118 	
    92 </project>
   119 </project>