diff --git a/Exam/Sd1/Diff/Diff/pom.xml b/Exam/Sd1/Diff/Diff/pom.xml index 5760c042c474fca92335df84456013b1713f788d..8156c42e224a2acc95c6fb9675bf3e7a05617fe6 100644 --- a/Exam/Sd1/Diff/Diff/pom.xml +++ b/Exam/Sd1/Diff/Diff/pom.xml @@ -9,6 +9,20 @@ <name>Diff</name> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.2</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + + </plugins> + </build> <dependencies> <dependency> diff --git a/Exam/Sd1/Diff/DiffSolution/pom.xml b/Exam/Sd1/Diff/DiffSolution/pom.xml index f1443c6c0cdf32dbb3e4bc0b1acbba3ce7a0184a..2791378daead81a7fe638fde2355252ec54f6903 100644 --- a/Exam/Sd1/Diff/DiffSolution/pom.xml +++ b/Exam/Sd1/Diff/DiffSolution/pom.xml @@ -9,6 +9,21 @@ <name>Diff</name> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.2</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + + </plugins> + </build> + <dependencies> <dependency> diff --git a/Exam/Sd1/IntMax/Solution/pom.xml b/Exam/Sd1/IntMax/Solution/pom.xml index dd6aa0ee2cdcee3b94746f5623e38532731c47d6..4dc3781de0f4fe620706f85d027cad4b9ad586ed 100644 --- a/Exam/Sd1/IntMax/Solution/pom.xml +++ b/Exam/Sd1/IntMax/Solution/pom.xml @@ -2,18 +2,39 @@ 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> - <parent> - <groupId>de.hdm-stuttgart.mi</groupId> - <artifactId>lecturenotes-pom</artifactId> - <version>1.0</version> - <relativePath>../../../../P/pom.xml</relativePath> - </parent> - <groupId>de.hdm_stuttgart.mi.sd1</groupId> <artifactId>intmax</artifactId> <version>2.0</version> <packaging>jar</packaging> <name>intmax</name> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.2</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.12</version> + <scope>test</scope> + </dependency> + + </dependencies> + + + </project> diff --git a/Exam/Sd1/IntMax/Test/pom.xml b/Exam/Sd1/IntMax/Test/pom.xml index 7ab61444bdc0823c9de8334c29f6647548bf918c..369bc5df0b782fa7284465ddab3e1468c174062b 100644 --- a/Exam/Sd1/IntMax/Test/pom.xml +++ b/Exam/Sd1/IntMax/Test/pom.xml @@ -2,13 +2,6 @@ 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> - <parent> - <groupId>de.hdm-stuttgart.mi</groupId> - <artifactId>lecturenotes-pom</artifactId> - <version>1.0</version> - <relativePath>../../../../P/pom.xml</relativePath> - </parent> - <groupId>de.hdm_stuttgart.mi.sd1</groupId> <artifactId>intmax</artifactId> <version>1.0</version> @@ -16,4 +9,30 @@ <name>intmax</name> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.2</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + + </plugins> + </build> + + + <dependencies> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.12</version> + <scope>test</scope> + </dependency> + + </dependencies> </project> diff --git a/Exam/Sd1/MaxArrayDiff/Solution/pom.xml b/Exam/Sd1/MaxArrayDiff/Solution/pom.xml index 10ffec2f6357f851fd99328c19a00239409f8a9d..325bd24cbada8e07a4be86e5e636a6223f74442b 100644 --- a/Exam/Sd1/MaxArrayDiff/Solution/pom.xml +++ b/Exam/Sd1/MaxArrayDiff/Solution/pom.xml @@ -2,18 +2,36 @@ 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> - <parent> - <groupId>de.hdm-stuttgart.mi</groupId> - <artifactId>lecturenotes-pom</artifactId> - <version>1.0</version> - <relativePath>../../../../P/pom.xml</relativePath> - </parent> - <groupId>de.hdm-stuttgart.de.sd1</groupId> <artifactId>maxarraydiff</artifactId> <version>2.0</version> <packaging>jar</packaging> - <name>vowel</name> + <name>MaxArrayDiff</name> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.2</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + + </plugins> + </build> + + <dependencies> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.12</version> + <scope>test</scope> + </dependency> + + </dependencies> </project> diff --git a/Exam/Sd1/MaxArrayDiff/Test/pom.xml b/Exam/Sd1/MaxArrayDiff/Test/pom.xml index 2c66344817ee6bd8aec25e5edc95858357408867..4b0704132b82f744453668aa00b54ba15812afa1 100644 --- a/Exam/Sd1/MaxArrayDiff/Test/pom.xml +++ b/Exam/Sd1/MaxArrayDiff/Test/pom.xml @@ -2,18 +2,38 @@ 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> - <parent> - <groupId>de.hdm-stuttgart.mi</groupId> - <artifactId>lecturenotes-pom</artifactId> - <version>1.0</version> - <relativePath>../../../../P/pom.xml</relativePath> - </parent> - <groupId>de.hdm-stuttgart.de.sd1</groupId> <artifactId>maxarraydiff</artifactId> <version>1.0</version> <packaging>jar</packaging> - <name>vowel</name> + <name>MaxArrayDiff</name> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.2</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + + </plugins> + </build> + + <dependencies> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.12</version> + <scope>test</scope> + </dependency> + + </dependencies> + </project> diff --git a/Exam/Sd1/Vowel/Solution/pom.xml b/Exam/Sd1/Vowel/Solution/pom.xml index 8f4aaeb6b2392dbf7755ca99994776da789ffab1..797189c611b8227bbbf365e1dfb9c8b09b837d67 100644 --- a/Exam/Sd1/Vowel/Solution/pom.xml +++ b/Exam/Sd1/Vowel/Solution/pom.xml @@ -2,18 +2,36 @@ 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> - <parent> - <groupId>de.hdm-stuttgart.mi</groupId> - <artifactId>lecturenotes-pom</artifactId> - <version>1.0</version> - <relativePath>../../../../P/pom.xml</relativePath> - </parent> - <groupId>de.hdm-stuttgart.de.sd1</groupId> <artifactId>vowel</artifactId> <version>2.0</version> <packaging>jar</packaging> <name>vowel</name> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.2</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + + </plugins> + </build> + + <dependencies> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.12</version> + <scope>test</scope> + </dependency> + + </dependencies> </project> diff --git a/Exam/Sd1/Vowel/Test/pom.xml b/Exam/Sd1/Vowel/Test/pom.xml index 825a2bf2e99787566329670909a1d33b5e7ccd24..134acef45b4342369d1e8dd491b6f9cf9c8c6f4f 100644 --- a/Exam/Sd1/Vowel/Test/pom.xml +++ b/Exam/Sd1/Vowel/Test/pom.xml @@ -2,13 +2,6 @@ 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> - <parent> - <groupId>de.hdm-stuttgart.mi</groupId> - <artifactId>lecturenotes-pom</artifactId> - <version>1.0</version> - <relativePath>../../../../P/pom.xml</relativePath> - </parent> - <groupId>de.hdm-stuttgart.de.sd1</groupId> <artifactId>vowel</artifactId> <version>1.0</version> @@ -16,4 +9,30 @@ <name>vowel</name> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.2</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + + </plugins> + </build> + + <dependencies> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.12</version> + <scope>test</scope> + </dependency> + + </dependencies> + </project>