diff --git a/ws/eclipse/HtmlExtensionTaglet/pom.xml b/ws/eclipse/HtmlExtensionTaglet/pom.xml index 23411a15dcf4460f236371772e20adbdef65b3aa..7afbef63b696cf06f4bfa467eb3dfcc9a2b28eec 100644 --- a/ws/eclipse/HtmlExtensionTaglet/pom.xml +++ b/ws/eclipse/HtmlExtensionTaglet/pom.xml @@ -1,32 +1,66 @@ <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> + 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-base-pom</artifactId> - <version>1.0</version> - <relativePath>../../../pom.xml</relativePath> - </parent> + <parent> + <groupId>de.hdm-stuttgart.mi</groupId> + <artifactId>lecturenotes-base-pom</artifactId> + <version>1.0</version> + <relativePath>../../../pom.xml</relativePath> + </parent> - <groupId>de.hdm-stuttgart.sd1</groupId> - <artifactId>taglet</artifactId> - <version>1.2</version> - <packaging>jar</packaging> + <groupId>de.hdm-stuttgart.sd1</groupId> + <artifactId>taglet</artifactId> + <version>1.2</version> + <packaging>jar</packaging> - <name>taglet</name> - <url>http://maven.apache.org</url> + <name>taglet</name> + <url>http://maven.apache.org</url> - <dependencies> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> - <dependency> - <groupId>sun.jdk</groupId> - <artifactId>tools</artifactId> - <version>1.7.0</version> - <scope>system</scope> - <systemPath>${java.home}/../lib/tools.jar</systemPath> - </dependency> + <distributionManagement> + <!-- This requires configurations in ~/.m2/settings.xml, see + settings.xml.template example in project root. --> + <repository> + <id>mi-maven-repository</id> + <url>scpexe://maven.mi.hdm-stuttgart.de/var/www/html/maven/artifacts</url> + </repository> + </distributionManagement> - </dependencies> + <dependencies> + <dependency> + <groupId>sun.jdk</groupId> + <artifactId>tools</artifactId> + <version>1.8.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + </dependencies> + <build> + <extensions> + <extension> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh-external</artifactId> + <version>2.10</version> + </extension> + </extensions> + <plugins> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.7.0</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + + </plugins> + </build> + </project>