Brord

doclet-pom-tools-fix

May 27th, 2019
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.37 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <groupId>org.iota</groupId>
  7.     <artifactId>java-md-doclet</artifactId>
  8.     <version>2.1.3</version>
  9.     <packaging>jar</packaging>
  10.  
  11.     <name>mddoclet</name>
  12.     <description>Doclet for generating MD documentation from javadoc</description>
  13.     <url>http://maven.apache.org</url>
  14.  
  15.     <properties>
  16.         <java-version>1.8</java-version>
  17.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18.     </properties>
  19.  
  20.     <dependencies>
  21.         <dependency>
  22.             <groupId>junit</groupId>
  23.             <artifactId>junit</artifactId>
  24.             <version>3.8.1</version>
  25.             <scope>test</scope>
  26.         </dependency>
  27.        
  28.         <dependency>
  29.             <groupId>org.slf4j</groupId>
  30.             <artifactId>slf4j-api</artifactId>
  31.             <version>1.7.25</version>
  32.         </dependency>
  33.  
  34.         <dependency>
  35.             <groupId>ch.qos.logback</groupId>
  36.             <artifactId>logback-classic</artifactId>
  37.             <version>1.2.3</version>
  38.         </dependency>
  39.  
  40.         <!-- Template generator for the MD files -->
  41.         <dependency>
  42.             <groupId>org.freemarker</groupId>
  43.             <artifactId>freemarker</artifactId>
  44.             <version>2.3.26-incubating</version>
  45.         </dependency>
  46.        
  47.         <!-- Wrapper for tools.jar import in both 1.8 and 1.9+ java -->
  48.         <dependency>
  49.           <groupId>com.github.olivergondza</groupId>
  50.           <artifactId>maven-jdk-tools-wrapper</artifactId>
  51.           <version>0.1</version>
  52.         </dependency>
  53.     </dependencies>
  54.  
  55.     <build>
  56.         <plugins>
  57.             <plugin>
  58.                 <groupId>org.apache.maven.plugins</groupId>
  59.                 <artifactId>maven-surefire-plugin</artifactId>
  60.                 <version>2.22.1</version>
  61.                 <configuration>
  62.                     <useSystemClassLoader>false</useSystemClassLoader>
  63.                 </configuration>
  64.             </plugin>
  65.             <plugin>
  66.                 <groupId>org.apache.maven.plugins</groupId>
  67.                 <artifactId>maven-compiler-plugin</artifactId>
  68.                 <version>3.3</version>
  69.                 <configuration>
  70.                     <source>${java-version}</source>
  71.                     <target>${java-version}</target>
  72.                     <testSource>${java-version}</testSource>
  73.                     <testTarget>${java-version}</testTarget>
  74.                 </configuration>
  75.             </plugin>
  76.         </plugins>
  77.     </build>
  78. </project>
Advertisement
Add Comment
Please, Sign In to add comment