Commit 8b7d433d by Tuomas Riihimäki

Add maven distrubution stuff to restpojo

1 parent 81b6c93a
Showing with 47 additions and 15 deletions
...@@ -2,19 +2,50 @@ ...@@ -2,19 +2,50 @@
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>
<artifactId>moya-restpojo</artifactId> <artifactId>moya-restpojo</artifactId>
<parent> <groupId>fi.codecrew.moya</groupId>
<groupId>fi.codecrew.moya</groupId> <version>1.0</version>
<artifactId>moya-parent</artifactId> <build>
<version>1.0</version> <plugins>
<relativePath>../moya-parent/pom.xml</relativePath> <plugin>
</parent> <groupId>org.apache.maven.plugins</groupId>
<!-- <artifactId>maven-compiler-plugin</artifactId>
<dependencies> <version>3.1</version>
<dependency> <configuration>
<groupId>fi.codecrew.moya</groupId> <source>1.5</source>
<artifactId>moya-database</artifactId> <target>1.5</target>
<version>${moya.version}</version> <encoding>UTF-8</encoding>
</dependency> </configuration>
</dependencies> </plugin>
--> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.7</version>
</extension>
</extensions>
</build>
<distributionManagement>
<downloadUrl>http://codecrew.fi/mvn</downloadUrl>
<repository>
<id>Codecrew</id>
<name>codecrew</name>
<url>sftp://codecrew.fi/var/www/website/mvn</url>
</repository>
</distributionManagement>
</project> </project>
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!