94 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <project xmlns="http://maven.apache.org/POM/4.0.0"
 | |
|     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
|     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <artifactId>core-java-concurrency-testing</artifactId>
 | |
|     <version>0.1.0-SNAPSHOT</version>
 | |
|     <name>core-java-concurrency-testing</name>
 | |
|     <packaging>jar</packaging>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-java</artifactId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|         <relativePath>../../parent-java</relativePath>
 | |
|     </parent>
 | |
| 	
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>junit</groupId>
 | |
|             <artifactId>junit</artifactId>
 | |
|             <version>4.13</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.googlecode.thread-weaver</groupId>
 | |
|             <artifactId>threadweaver</artifactId>
 | |
|             <version>0.2</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.google.code.tempus-fugit</groupId>
 | |
|             <artifactId>tempus-fugit</artifactId>
 | |
|             <version>1.1</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.googlecode.multithreadedtc</groupId>
 | |
|             <artifactId>multithreadedtc</artifactId>
 | |
|             <version>1.01</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.openjdk.jcstress</groupId>
 | |
|             <artifactId>jcstress-core</artifactId>
 | |
|             <version>0.5</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <version>3.1</version>
 | |
|                 <configuration>
 | |
|                     <compilerVersion>${javac.target}</compilerVersion>
 | |
|                     <source>${javac.target}</source>
 | |
|                     <target>${javac.target}</target>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
| 
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-shade-plugin</artifactId>
 | |
|                 <version>2.2</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>main</id>
 | |
|                         <phase>package</phase>
 | |
|                         <goals>
 | |
|                             <goal>shade</goal>
 | |
|                         </goals>
 | |
|                         <configuration>
 | |
|                             <finalName>jcstress</finalName>
 | |
|                             <transformers>
 | |
|                                 <transformer
 | |
|                                     implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
 | |
|                                     <mainClass>org.openjdk.jcstress.Main</mainClass>
 | |
|                                 </transformer>
 | |
|                                 <transformer
 | |
|                                     implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
 | |
|                                     <resource>META-INF/TestList</resource>
 | |
|                                 </transformer>
 | |
|                             </transformers>
 | |
|                         </configuration>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
| </project>
 |