Skip to content

Commit

Permalink
Maven-ized
Browse files Browse the repository at this point in the history
  • Loading branch information
filipmaelbrancke committed Mar 15, 2013
1 parent 689644b commit 053c439
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
.metadata/*
Autobahn/doc/html/*

# maven
target
99 changes: 99 additions & 0 deletions Autobahn/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8"?>
<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.tavendo.autobahn</groupId>
<artifactId>autobahn-android</artifactId>
<version>0.5.1</version>
<packaging>jar</packaging>

<name>AutobahnAndroid</name>
<description>AutobahnAndroid - WebSocket and WAMP for Android</description>
<url>http://autobahn.ws/</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.6</java.version>
<android.version>4.1.1.4</android.version>
<jackson.version>1.9.7</jackson.version>
</properties>

<scm>
<url>http://github.com/tavendo/AutobahnAndroid/</url>
<connection>scm:git:git://github.com/tavendo/AutobahnAndroid.git</connection>
<developerConnection>scm:git:ssh://[email protected]:tavendo/AutobahnAndroid.git</developerConnection>
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>GitHub Issues</system>
<url>http://github.com/tavendo/AutobahnAndroid/issues</url>
</issueManagement>

<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<organization>
<name>Tavendo GmbH</name>
<url>http://www.tavendo.de</url>
</organization>

<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>${android.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>${jackson.version}</version>
</dependency>
</dependencies>

<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 053c439

Please sign in to comment.