< prev index next >

src/utils/LogCompilation/pom.xml

Print this page




  74                 <artifactId>maven-compiler-plugin</artifactId>
  75                 <version>3.7.0</version>
  76                 <configuration>
  77                     <source>1.8</source>
  78                     <target>1.8</target>
  79                 </configuration>
  80             </plugin>
  81             <plugin>
  82                 <groupId>org.apache.maven.plugins</groupId>
  83                 <artifactId>maven-release-plugin</artifactId>
  84                 <version>2.5.3</version>
  85             </plugin>
  86             <plugin>
  87                 <groupId>org.apache.maven.plugins</groupId>
  88                 <artifactId>maven-javadoc-plugin</artifactId>
  89                 <version>3.0.0-M1</version>
  90             </plugin>
  91             <plugin>
  92                 <groupId>org.apache.maven.plugins</groupId>
  93                 <artifactId>maven-surefire-plugin</artifactId>
  94                 <version>2.20.1</version>
  95             </plugin>
  96             <plugin>
  97                 <artifactId>maven-antrun-plugin</artifactId>
  98                 <version>1.8</version>
  99                 <executions>
 100                     <execution>
 101                         <id>copy</id>
 102                         <phase>package</phase>
 103                         <configuration>
 104                             <target>
 105                                 <copy file="${basedir}/target/${artifactId}-${version}.jar" tofile="${basedir}/logc.jar"/>
 106                             </target>
 107                         </configuration>
 108                         <goals>
 109                             <goal>run</goal>
 110                         </goals>
 111                     </execution> 
 112                 </executions>
 113             </plugin>
 114         </plugins>


  74                 <artifactId>maven-compiler-plugin</artifactId>
  75                 <version>3.7.0</version>
  76                 <configuration>
  77                     <source>1.8</source>
  78                     <target>1.8</target>
  79                 </configuration>
  80             </plugin>
  81             <plugin>
  82                 <groupId>org.apache.maven.plugins</groupId>
  83                 <artifactId>maven-release-plugin</artifactId>
  84                 <version>2.5.3</version>
  85             </plugin>
  86             <plugin>
  87                 <groupId>org.apache.maven.plugins</groupId>
  88                 <artifactId>maven-javadoc-plugin</artifactId>
  89                 <version>3.0.0-M1</version>
  90             </plugin>
  91             <plugin>
  92                 <groupId>org.apache.maven.plugins</groupId>
  93                 <artifactId>maven-surefire-plugin</artifactId>
  94                 <version>3.0.0-M2</version>
  95             </plugin>
  96             <plugin>
  97                 <artifactId>maven-antrun-plugin</artifactId>
  98                 <version>1.8</version>
  99                 <executions>
 100                     <execution>
 101                         <id>copy</id>
 102                         <phase>package</phase>
 103                         <configuration>
 104                             <target>
 105                                 <copy file="${basedir}/target/${artifactId}-${version}.jar" tofile="${basedir}/logc.jar"/>
 106                             </target>
 107                         </configuration>
 108                         <goals>
 109                             <goal>run</goal>
 110                         </goals>
 111                     </execution> 
 112                 </executions>
 113             </plugin>
 114         </plugins>
< prev index next >