Guest User

Untitled

a guest
Nov 4th, 2020
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.97 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>cato.test</groupId>
  8.     <artifactId>EulersMethod</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.     <properties>
  11.         <java.version>1.8</java.version>
  12.         <maven.compiler.version>3.8.1</maven.compiler.version>
  13.         <maven.compiler.source>1.8</maven.compiler.source>
  14.         <maven.compiler.target>1.8</maven.compiler.target>
  15.     </properties>
  16.  
  17.     <repositories>
  18.         <repository>
  19.             <id>org.jfree</id>
  20.             <url>https://mvnrepository.com/artifact/org.jfree/jfreechart</url>
  21.         </repository>
  22.     </repositories>
  23.  
  24.     <dependencies>
  25.         <dependency>
  26.             <groupId>org.jfree</groupId>
  27.             <artifactId>jfreechart</artifactId>
  28.             <version>1.5.1</version>
  29.         </dependency>
  30.  
  31.         <dependency>
  32.             <groupId>org.apache.maven.plugins</groupId>
  33.             <artifactId>maven-compiler-plugin</artifactId>
  34.             <version>3.8.1</version>
  35.             <type>maven-plugin</type>
  36.         </dependency>
  37.  
  38.     </dependencies>
  39.  
  40.     <build>
  41.         <plugins>
  42.             <plugin>
  43.                 <groupId>org.apache.maven.plugins</groupId>
  44.                 <artifactId>maven-jar-plugin</artifactId>
  45.                 <version>3.2.0</version>
  46.                 <configuration>
  47.                     <archive>
  48.                         <manifest>
  49.                             <mainClass>catocato.test.EulersMethod</mainClass>
  50.                         </manifest>
  51.                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  52.                     </archive>
  53.                 </configuration>
  54.             </plugin>
  55.         </plugins>
  56.     </build>
  57. </project>
Add Comment
Please, Sign In to add comment