131 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			131 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
|  | <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>java-jdi</artifactId> | ||
|  |     <version>0.1.0-SNAPSHOT</version> | ||
|  |     <name>java-jdi</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>log4j</groupId> | ||
|  |             <artifactId>log4j</artifactId> | ||
|  |             <version>${log4j.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.slf4j</groupId> | ||
|  |             <artifactId>slf4j-api</artifactId> | ||
|  |             <version>${org.slf4j.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>ch.qos.logback</groupId> | ||
|  |             <artifactId>logback-classic</artifactId> | ||
|  |             <version>${logback.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.openjdk.jmh</groupId> | ||
|  |             <artifactId>jmh-core</artifactId> | ||
|  |             <version>${jmh-core.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.openjdk.jmh</groupId> | ||
|  |             <artifactId>jmh-generator-annprocess</artifactId> | ||
|  |             <version>${jmh-generator.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.commons</groupId> | ||
|  |             <artifactId>commons-lang3</artifactId> | ||
|  |             <version>${commons-lang3.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.assertj</groupId> | ||
|  |             <artifactId>assertj-core</artifactId> | ||
|  |             <version>${assertj.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.sun</groupId> | ||
|  |             <artifactId>tools</artifactId> | ||
|  |             <version>${tools.version}</version> | ||
|  |             <scope>system</scope> | ||
|  |       		<systemPath>${java.home}/../lib/tools.jar</systemPath> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <build> | ||
|  |         <finalName>java-jdi</finalName> | ||
|  |         <resources> | ||
|  |             <resource> | ||
|  |                 <directory>src/main/resources</directory> | ||
|  |                 <filtering>true</filtering> | ||
|  |             </resource> | ||
|  |         </resources> | ||
|  | 
 | ||
|  |         <plugins> | ||
|  | 
 | ||
|  |             <plugin> | ||
|  |                 <groupId>org.apache.maven.plugins</groupId> | ||
|  |                 <artifactId>maven-javadoc-plugin</artifactId> | ||
|  |                 <version>${maven-javadoc-plugin.version}</version> | ||
|  |                 <configuration> | ||
|  |                     <source>1.8</source> | ||
|  |                     <target>1.8</target> | ||
|  |                 </configuration> | ||
|  |             </plugin> | ||
|  |         </plugins> | ||
|  |     </build> | ||
|  | 
 | ||
|  |     <profiles> | ||
|  |         <profile> | ||
|  |             <id>integration</id> | ||
|  |             <build> | ||
|  |                 <plugins> | ||
|  |                     <plugin> | ||
|  |                         <groupId>org.apache.maven.plugins</groupId> | ||
|  |                         <artifactId>maven-surefire-plugin</artifactId> | ||
|  |                         <executions> | ||
|  |                             <execution> | ||
|  |                                 <phase>integration-test</phase> | ||
|  |                                 <goals> | ||
|  |                                     <goal>test</goal> | ||
|  |                                 </goals> | ||
|  |                                 <configuration> | ||
|  |                                     <includes> | ||
|  |                                         <include>**/*IntegrationTest.java</include> | ||
|  |                                     </includes> | ||
|  |                                 </configuration> | ||
|  |                             </execution> | ||
|  |                         </executions> | ||
|  |                         <configuration> | ||
|  |                             <systemPropertyVariables> | ||
|  |                                 <test.mime>json</test.mime> | ||
|  |                             </systemPropertyVariables> | ||
|  |                         </configuration> | ||
|  |                     </plugin> | ||
|  |                 </plugins> | ||
|  |             </build> | ||
|  |         </profile> | ||
|  |     </profiles> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <commons-lang3.version>3.5</commons-lang3.version> | ||
|  | 
 | ||
|  |         <assertj.version>3.6.1</assertj.version> | ||
|  | 		<tool.version>1.8</tool.version> | ||
|  |         <org.slf4j.version>1.7.21</org.slf4j.version> | ||
|  |         <logback.version>1.1.7</logback.version> | ||
|  | 		<tools.version>1.8</tools.version> | ||
|  |         <maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version> | ||
|  |         <maven-javadoc-plugin.version>3.0.0-M1</maven-javadoc-plugin.version> | ||
|  |         <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> | ||
|  |     </properties> | ||
|  | </project> |