|
| 1 | +<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"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + |
| 4 | + <groupId>org.hoteia.tools</groupId> |
| 5 | + <artifactId>scribe-mapping</artifactId> |
| 6 | + <version>0.1-SNAPSHOT</version> |
| 7 | + <packaging>jar</packaging> |
| 8 | + <name>scribe-mapping</name> |
| 9 | + <description>Scribe Mapping Project, extends Scribe-Java Project from GitHub</description> |
| 10 | + <url>http://www.hoteia.com</url> |
| 11 | + <inceptionYear>2012-2013</inceptionYear> |
| 12 | + <organization> |
| 13 | + <name>Hoteia</name> |
| 14 | + <url>http://www.hoteia.com</url> |
| 15 | + </organization> |
| 16 | + |
| 17 | + <scm> |
| 18 | + < connection>scm:git: [email protected]:hoteia/scribe-mapping.git</ connection> |
| 19 | + < developerConnection>scm:git: [email protected]:hoteia/scribe-mapping.git</ developerConnection> |
| 20 | + < url>scm:git: [email protected]:hoteia/scribe-mapping.git</ url> |
| 21 | + <tag>HEAD</tag> |
| 22 | + </scm> |
| 23 | + |
| 24 | + <properties> |
| 25 | + <jackson-version>1.8.0</jackson-version> |
| 26 | + </properties> |
| 27 | + |
| 28 | + <dependencies> |
| 29 | + <!-- JSON --> |
| 30 | + <dependency> |
| 31 | + <groupId>org.codehaus.jackson</groupId> |
| 32 | + <artifactId>jackson-jaxrs</artifactId> |
| 33 | + <version>${jackson-version}</version> |
| 34 | + <type>jar</type> |
| 35 | + <scope>compile</scope> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.codehaus.jackson</groupId> |
| 39 | + <artifactId>jackson-mapper-asl</artifactId> |
| 40 | + <version>${jackson-version}</version> |
| 41 | + </dependency> |
| 42 | + </dependencies> |
| 43 | + |
| 44 | + <distributionManagement> |
| 45 | + <repository> |
| 46 | + <id>releases</id> |
| 47 | + <name>Hoteia Releases</name> |
| 48 | + <url>http://nexus.hoteia.com/content/repositories/releases</url> |
| 49 | + </repository> |
| 50 | + <snapshotRepository> |
| 51 | + <id>snapshots</id> |
| 52 | + <name>Hoteia Snapshots</name> |
| 53 | + <url>http://nexus.hoteia.com/content/repositories/snapshots</url> |
| 54 | + <uniqueVersion>false</uniqueVersion> |
| 55 | + </snapshotRepository> |
| 56 | + </distributionManagement> |
| 57 | + |
| 58 | +</project> |
0 commit comments