Skip to content
Snippets Groups Projects
Commit 780fd4bd authored by Goik Martin's avatar Goik Martin
Browse files

Missing update

parent 65829df1
No related branches found
No related tags found
No related merge requests found
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>de.hdm-stuttgart.mi.sd1</groupId> <groupId>de.hdm-stuttgart.mi.sd1</groupId>
<artifactId>sd1_test_0090</artifactId> <artifactId>sd1_test_01_exam</artifactId>
<version>0.6</version> <version>0.9</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>sd1_exam_0090</name> <name>sd1_test_01_exam</name>
<url>https://freedocs.mi.hdm-stuttgart.de/sd1FirstJavaProject.html</url> <url>https://freedocs.mi.hdm-stuttgart.de/sd1_sect_mavenCli.html</url>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> </properties>
<repositories> <repositories>
<repository> <repository>
<id>hdm-mi-internal-maven-repo</id> <id>hdm-mi-internal-maven-repo</id>
<url>https://maven.mi.hdm-stuttgart.de/artifacts</url> <url>https://maven.mi.hdm-stuttgart.de/nexus/repository/mi-maven</url>
</repository> </repository>
</repositories> </repositories>
<dependencies>
<dependencies> <dependency>
<dependency> <groupId>junit</groupId>
<groupId>junit</groupId> <artifactId>junit</artifactId>
<artifactId>junit</artifactId> <version>4.12</version>
<version>4.12</version> <scope>test</scope>
<scope>test</scope> </dependency>
</dependency>
<dependency>
<dependency> <groupId>org.apache.logging.log4j</groupId>
<groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId>
<artifactId>log4j-core</artifactId> <version>2.12.0</version>
<version>2.6</version> </dependency>
</dependency>
<dependency>
<dependency> <groupId>de.hdm_stuttgart.mi.exam</groupId>
<groupId>de.hdm_stuttgart.mi.exam</groupId> <artifactId>unitmarking</artifactId>
<artifactId>unitmarking</artifactId> <version>1.0</version>
<version>0.9</version> </dependency>
</dependency>
</dependencies>
</dependencies>
<build>
<build> <plugins>
<plugins>
<plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId>
<artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version>
<version>3.5.1</version> <configuration>
<configuration> <source>11</source>
<source>1.8</source> <target>11</target>
<target>1.8</target> </configuration>
</configuration> </plugin>
</plugin>
<plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId>
<artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version>
<version>2.10.3</version> <configuration>
<configuration /> <javaApiLinks>
</plugin> <property>
<name>api_11</name>
<plugin> <value>https://klausur.mi.hdm-stuttgart.de/doc/openjdk-11-doc/api/</value>
<artifactId>maven-assembly-plugin</artifactId> </property>
<version>2.3</version> </javaApiLinks>
<configuration>
<descriptor>src/main/assembly/assembly.xml</descriptor> <stylesheetfile>localstyles.css</stylesheetfile>
</configuration>
<executions> <additionalJOptions>
<execution> <additionalJOption>-html5</additionalJOption>
<id>make-assembly</id> </additionalJOptions>
<phase>package</phase> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
<goals> </configuration>
<goal>single</goal> </plugin>
</goals>
<configuration> <plugin>
<archive> <artifactId>maven-assembly-plugin</artifactId>
<manifest> <version>3.1.1</version>
<mainClass>de.hdm_stuttgart.mi.sd1.test.ShowReachedPoints</mainClass>
</manifest> <configuration>
</archive> <descriptors>
</configuration> <descriptor>src/main/assembly/assembly.xml</descriptor>
</execution> </descriptors>
</executions> </configuration>
</plugin> <executions>
<execution>
</plugins> <id>make-assembly</id>
</build> <phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>de.hdm_stuttgart.mi.sd1.test.ShowReachedPoints</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment