diff options
| author | Paul Buetow <paul@buetow.org> | 2025-04-15 00:20:56 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-04-15 00:20:56 +0300 |
| commit | fcd42f8cf114aa1ee1dbe70c6b2a1b57c4b30dab (patch) | |
| tree | f370a72b10596fc68f6d54b0e45ab36aa281eaa3 | |
| parent | e1ab7f751de9ccfd703931016371a95e8208ffb4 (diff) | |
add pom
| -rw-r--r-- | pom.xml | 84 |
1 files changed, 84 insertions, 0 deletions
@@ -0,0 +1,84 @@ +<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> + <groupId>com.example</groupId> + <artifactId>verteilte-systeme</artifactId> + <version>1.0-SNAPSHOT</version> + <name>Verteilte Systeme</name> + <description>This is the distributed systems simulation/learning environment!</description> + + <properties> + <maven.compiler.source>1.8</maven.compiler.source> + <maven.compiler.target>1.8</maven.compiler.target> + </properties> + + <build> + <resources> + <resource> + <directory>src/main/resources</directory> + </resource> + </resources> + <plugins> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>${maven.compiler.source}</source> + <target>${maven.compiler.target}</target> + <compilerArgs> + <arg>-Xlint:deprecation,unchecked</arg> + </compilerArgs> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>3.2.0</version> + <configuration> + <archive> + <manifest> + <addClasspath>true</addClasspath> + <classpathPrefix>lib/</classpathPrefix> + <mainClass>simulator.VSMain</mainClass> + </manifest> + </archive> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>3.2.0</version> + <configuration> + <destDir>${project.basedir}/javadoc</destDir> + </configuration> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>3.0.0</version> + <executions> + <execution> + <goals> + <goal>java</goal> + </goals> + </execution> + </executions> + <configuration> + <mainClass>simulator.VSMain</mainClass> + </configuration> + </plugin> + + </plugins> + </build> + + <dependencies> + <!-- Add your project dependencies here --> + </dependencies> +</project> |
