java/sql-dk/pom.xml
branchv_0
changeset 241 f332033ed66c
parent 238 4a1864c3e867
child 242 0503996934e0
equal deleted inserted replaced
240:09c72e23c895 241:f332033ed66c
     4 	<groupId>info.globalcode.sql.dk</groupId>
     4 	<groupId>info.globalcode.sql.dk</groupId>
     5 	<artifactId>sql-dk</artifactId>
     5 	<artifactId>sql-dk</artifactId>
     6 	<version>0.10-SNAPSHOT</version>
     6 	<version>0.10-SNAPSHOT</version>
     7 	<packaging>jar</packaging>
     7 	<packaging>jar</packaging>
     8 	
     8 	
     9 	<dependencies>
       
    10 		<dependency>
       
    11 			<groupId>org.testng</groupId>
       
    12 			<artifactId>testng</artifactId>
       
    13 			<version>6.9.9</version>
       
    14 			<scope>test</scope>
       
    15 		</dependency>
       
    16 	</dependencies>
       
    17 	
       
    18 	<properties>
     9 	<properties>
    19 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    10 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    20 		<maven.compiler.source>1.8</maven.compiler.source>
    11 		<maven.compiler.source>1.8</maven.compiler.source>
    21 		<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>
    22 	</properties>
    14 	</properties>
       
    15 	
       
    16 	<dependencies>
       
    17 		<dependency>
       
    18 			<groupId>org.junit.jupiter</groupId>
       
    19 			<artifactId>junit-jupiter-engine</artifactId>
       
    20 			<version>${junit.version}</version>
       
    21 			<scope>test</scope>
       
    22 		</dependency>
       
    23 		<dependency>
       
    24 			<groupId>org.junit.jupiter</groupId>
       
    25 			<artifactId>junit-jupiter-params</artifactId>
       
    26 			<version>${junit.version}</version>
       
    27 			<scope>test</scope>
       
    28 		</dependency>
       
    29 	</dependencies>
    23 	
    30 	
    24 	<build>
    31 	<build>
    25 		<plugins>
    32 		<plugins>
    26 			<plugin>
    33 			<plugin>
    27 				<groupId>org.codehaus.mojo</groupId>
    34 				<groupId>org.codehaus.mojo</groupId>
    61 							<outputFile>target/bash-completion.sh</outputFile>
    68 							<outputFile>target/bash-completion.sh</outputFile>
    62 						</configuration>
    69 						</configuration>
    63 					</execution>
    70 					</execution>
    64 				</executions>
    71 				</executions>
    65 			</plugin>
    72 			</plugin>
       
    73 			<plugin>
       
    74 				<!--
       
    75 					Without this, tests are executed as „POJO Tests“ instead of „JUnit5 Tests“
       
    76 					and @BeforeEach annotation does not work.
       
    77 					http://maven.apache.org/surefire/maven-surefire-plugin/examples/pojo-test.html
       
    78 				-->
       
    79 				<artifactId>maven-surefire-plugin</artifactId>
       
    80 				<version>2.22.0</version>
       
    81 				<dependencies>
       
    82 					<dependency>
       
    83 						<groupId>org.junit.platform</groupId>
       
    84 						<artifactId>junit-platform-surefire-provider</artifactId>
       
    85 						<version>1.2.0</version>
       
    86 					</dependency>
       
    87 				</dependencies>
       
    88 			</plugin>
    66 		</plugins>
    89 		</plugins>
    67 	</build>
    90 	</build>
    68 	
    91 	
    69 </project>
    92 </project>