From 0d6d53790a304a54bbaddbc0f456623af1785827 Mon Sep 17 00:00:00 2001 From: Martin Goik <goik@hdm-stuttgart.de> Date: Fri, 30 Mar 2018 20:30:27 +0200 Subject: [PATCH] New Nexus repo --- Klausuren/Sda1/2017winter/Solve/pom.xml | 251 ++++++++++++------------ 1 file changed, 121 insertions(+), 130 deletions(-) diff --git a/Klausuren/Sda1/2017winter/Solve/pom.xml b/Klausuren/Sda1/2017winter/Solve/pom.xml index 917420819..39bcef418 100644 --- a/Klausuren/Sda1/2017winter/Solve/pom.xml +++ b/Klausuren/Sda1/2017winter/Solve/pom.xml @@ -1,132 +1,123 @@ <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>de.hdm-stuttgart.mi.sda1</groupId> - <artifactId>sda1_2017winter_solve</artifactId> - <version>1.0</version> - <packaging>jar</packaging> - - <name>sda1_2017winter_solve</name> - - <url>http://freedocs.mi.hdm-stuttgart.de</url> - - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - </properties> - - <repositories> - <repository> - <id>hdm-mi-internal-maven-repo</id> - <url>https://maven.mi.hdm-stuttgart.de/artifacts</url> - </repository> - <!-- - <repository> - <id>oxygenxml-repo</id> - <url>https://www.oxygenxml.com/maven</url> - </repository> ---> - </repositories> - - <dependencies> -<!-- - <dependency> - <groupId>org.opengis.cite.xerces</groupId> - <artifactId>xercesImpl-xsd11</artifactId> - <version>2.12-beta-r1667115</version> - </dependency> - --> - <dependency> - <groupId>com.oxygenxml</groupId> - <artifactId>oxygen-xercesImpl</artifactId> - <version>19.1.0.3</version> - </dependency> - - <dependency> - <groupId>com.oxygenxml</groupId> - <artifactId>oxygen</artifactId> - <version>19.1.0.3</version> - </dependency> - - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.12</version> - <scope>test</scope> - <optional>true</optional> - </dependency> - - <dependency> - <groupId>mysql</groupId> - <artifactId>mysql-connector-java</artifactId> - <version>5.1.36</version> - <scope>runtime</scope> - </dependency> - - <dependency> - <groupId>com.rackspace.eclipse.webtools.sourceediting</groupId> - <artifactId>org.eclipse.wst.xml.xpath2.processor</artifactId> - <version>2.1.100</version> - </dependency> - - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-api</artifactId> - <version>2.1</version> - </dependency> - - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-core</artifactId> - <version>2.1</version> - </dependency> - - <!-- Still needed to keep oxygenxml happy using legacy logging --> - <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - <version>1.2.17</version> - </dependency> - - <dependency> - <groupId>org.jdom</groupId> - <artifactId>jdom2</artifactId> - <version>2.0.6</version> - </dependency> - - <dependency> - <groupId>jaxen</groupId> - <artifactId>jaxen</artifactId> - <version>1.1.6</version> - </dependency> - - <dependency> - <groupId>de.hdm_stuttgart.mi.exam</groupId> - <artifactId>unitmarking</artifactId> - <version>0.9</version> - </dependency> - - </dependencies> - - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.5.1</version> - <configuration> - <source>1.8</source> - <target>1.8</target> - <compilerArgument>-proc:none</compilerArgument> - </configuration> - </plugin> - - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <version>2.10.1</version> - <configuration /> - </plugin> - </plugins> - </build> -</project> + <modelVersion>4.0.0</modelVersion> + + <groupId>de.hdm-stuttgart.mi.sda1</groupId> + <artifactId>sda1_2017winter_solve</artifactId> + <version>1.0</version> + <packaging>jar</packaging> + + <name>sda1_2017winter_solve</name> + + <url>http://freedocs.mi.hdm-stuttgart.de</url> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <repositories> + <repository> + <id>hdm-mi-internal-maven-repo</id> + <url>https://maven.mi.hdm-stuttgart.de/nexus/repository/mi-maven</url> + </repository> + <repository> + <id>oxygenxml-repo</id> + <url>https://maven.mi.hdm-stuttgart.de/nexus/repository/oxygen</url> + </repository> + </repositories> + + <dependencies> + <dependency> + <groupId>com.oxygenxml</groupId> + <artifactId>oxygen-xercesImpl</artifactId> + <version>19.1.0.3</version> + </dependency> + + <dependency> + <groupId>com.oxygenxml</groupId> + <artifactId>oxygen</artifactId> + <version>19.1.0.3</version> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.12</version> + <scope>test</scope> + <optional>true</optional> + </dependency> + + <dependency> + <groupId>mysql</groupId> + <artifactId>mysql-connector-java</artifactId> + <version>5.1.36</version> + <scope>runtime</scope> + </dependency> + + <dependency> + <groupId>com.rackspace.eclipse.webtools.sourceediting</groupId> + <artifactId>org.eclipse.wst.xml.xpath2.processor</artifactId> + <version>2.1.100</version> + </dependency> + + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-api</artifactId> + <version>2.1</version> + </dependency> + + <dependency> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-core</artifactId> + <version>2.1</version> + </dependency> + + <!-- Still needed to keep oxygenxml happy using legacy logging --> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.17</version> + </dependency> + + <dependency> + <groupId>org.jdom</groupId> + <artifactId>jdom2</artifactId> + <version>2.0.6</version> + </dependency> + + <dependency> + <groupId>jaxen</groupId> + <artifactId>jaxen</artifactId> + <version>1.1.6</version> + </dependency> + + <dependency> + <groupId>de.hdm_stuttgart.mi.exam</groupId> + <artifactId>unitmarking</artifactId> + <version>0.9</version> + </dependency> + + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.5.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + <compilerArgument>-proc:none</compilerArgument> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.10.1</version> + <configuration /> + </plugin> + </plugins> + </build> +</project> \ No newline at end of file -- GitLab