summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSimon Rettberg2014-12-02 16:33:17 +0100
committerSimon Rettberg2014-12-02 16:33:17 +0100
commitcb1efabb77d505efcafad19b8f57ca159d3525e5 (patch)
tree46004630aa20bf81f376b750ca42a1116cedb930 /pom.xml
parentDefaulting marker width and height to 1. (diff)
downloadsvg-salamander-core-cb1efabb77d505efcafad19b8f57ca159d3525e5.tar.gz
svg-salamander-core-cb1efabb77d505efcafad19b8f57ca159d3525e5.tar.xz
svg-salamander-core-cb1efabb77d505efcafad19b8f57ca159d3525e5.zip
Strip down pom.xml, add mltk-repo for local deployment
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml79
1 files changed, 14 insertions, 65 deletions
diff --git a/pom.xml b/pom.xml
index f56f7f9..27362ee 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2,12 +2,6 @@
<modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.sonatype.oss</groupId>
- <artifactId>oss-parent</artifactId>
- <version>7</version>
- </parent>
-
<!-- TODO Mark: replace with com.kitfox -->
<groupId>com.kitfox</groupId>
<artifactId>kitfox-svg-salamander</artifactId>
@@ -29,12 +23,18 @@
<url>http://www.kitfox.com/</url>
</organization>
- <!-- TODO Mark: replace with your repo url paths -->
- <scm>
- <url>http://svgsalamander.java.net/tags/kitfox-svg-salamander-1.0.8</url>
- <connection>scm:svn:https://svn.java.net/svn/svgsalamander~svn/tags/kitfox-svg-salamander-1.0.8</connection>
- <developerConnection>scm:svn:https://svn.java.net/svn/svgsalamander~svn/tags/kitfox-svg-salamander-1.0.8</developerConnection>
- </scm>
+ <distributionManagement>
+ <repository>
+ <id>mltk-repo</id>
+ <name>mltk-services repo</name>
+ <url>http://mltk-services.ruf.uni-freiburg.de:8081/nexus/content/repositories/releases/</url>
+ </repository>
+ <snapshotRepository>
+ <id>mltk-repo</id>
+ <name>mltk-services repo</name>
+ <url>http://mltk-services.ruf.uni-freiburg.de:8081/nexus/content/repositories/snapshots/</url>
+ </snapshotRepository>
+ </distributionManagement>
<!-- TODO Mark: replace with your license -->
<licenses>
@@ -136,63 +136,12 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
- <source>1.6</source>
- <target>1.6</target>
+ <source>1.7</source>
+ <target>1.7</target>
</configuration>
</plugin>
<!-- enforce maven version -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-enforcer-plugin</artifactId>
- <version>1.0</version>
- <executions>
- <execution>
- <id>enforce-maven-version</id>
- <goals>
- <goal>enforce</goal>
- </goals>
- <configuration>
- <rules>
- <requireMavenVersion>
- <version>[3.0,)</version>
- <message>you-must-run-maven-3.0-or-above</message>
- </requireMavenVersion>
- </rules>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
-
- <plugin>
- <!-- generate javadoc -->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
- <configuration>
- <quiet>true</quiet>
- <verbose>false</verbose>
- <links>
- <show>public</show>
- <link>http://java.sun.com/javase/1.6.0/docs/api</link>
- </links>
- <linksource>true</linksource>
- <detectLinks>true</detectLinks>
- <windowtitle>${project.name} API ${project.version} /
- ${maven.build.timestamp}</windowtitle>
- <doctitle>${project.name} API ${project.version} /
- ${maven.build.timestamp}</doctitle>
- <header><![CDATA[<a href="${project.organization.url}" target="_blank">${project.organization.name}</a>]]></header>
- <footer><![CDATA[<a href="${project.organization.url}" target="_blank">${project.organization.name}</a>]]></footer>
- <bottom>
- <!-- note: these "years" are internal javadoc plugin tags -->
- Copyright © {inceptionYear}-{currentYear}
- <![CDATA[<a href="${project.organization.url}" target="_blank">${project.organization.name}</a>]]>.
- All Rights Reserved.
- </bottom>
- </configuration>
- </plugin>
<plugin>
<!-- generate source -->