blob: 27ae3a79e45828a3c430a2bcdd730c5cc351061f [file] [log] [blame]
simonetripodif4a25cf2012-04-17 22:43:31 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 | Copyright 2012 FasterXML.com
4 |
5 | Licensed under the Apache License, Version 2.0 (the "License");
6 | you may not use this file except in compliance with the License.
7 | You may obtain a copy of the License at
8 |
9 | http://www.apache.org/licenses/LICENSE-2.0
10 |
11 | Unless required by applicable law or agreed to in writing, software
12 | distributed under the License is distributed on an "AS IS" BASIS,
13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | See the License for the specific language governing permissions and
15 | limitations under the License.
16-->
Tatu Saloranta31266582011-12-22 21:20:15 -080017<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">
simonetripodif4a25cf2012-04-17 22:43:31 +020018
Tatu Saloranta31266582011-12-22 21:20:15 -080019 <modelVersion>4.0.0</modelVersion>
simonetripodif4a25cf2012-04-17 22:43:31 +020020
Tatu Saloranta31266582011-12-22 21:20:15 -080021 <parent>
simonetripodif4a25cf2012-04-17 22:43:31 +020022 <groupId>com.fasterxml</groupId>
Tatu Saloranta31266582011-12-22 21:20:15 -080023 <artifactId>oss-parent</artifactId>
simonetripodif4a25cf2012-04-17 22:43:31 +020024 <version>2-SNAPSHOT</version>
Tatu Saloranta31266582011-12-22 21:20:15 -080025 </parent>
simonetripodif4a25cf2012-04-17 22:43:31 +020026
Tatu Saloranta31266582011-12-22 21:20:15 -080027 <groupId>com.fasterxml.jackson.core</groupId>
28 <artifactId>jackson-annotations</artifactId>
Tatu Saloranta7be99342012-03-25 11:43:36 -070029 <version>2.0.1-SNAPSHOT</version>
simonetripodif4a25cf2012-04-17 22:43:31 +020030
31 <name>Jackson-annotations</name>
Tatu Saloranta31266582011-12-22 21:20:15 -080032 <description>Core annotations used for value types, used by Jackson databinding package.
33 </description>
34 <url>http://wiki.fasterxml.com/JacksonHome</url>
35 <scm>
36 <connection>scm:git:git@github.com:FasterXML/jackson-annotations.git</connection>
37 <developerConnection>scm:git:git@github.com:FasterXML/jackson-annotations.git</developerConnection>
simonetripodif4a25cf2012-04-17 22:43:31 +020038 <url>http://github.com/FasterXML/jackson-annotations</url>
Tatu Saloranta31266582011-12-22 21:20:15 -080039 </scm>
Tatu Saloranta31266582011-12-22 21:20:15 -080040
Tatu Saloranta31266582011-12-22 21:20:15 -080041 <properties>
simonetripodif4a25cf2012-04-17 22:43:31 +020042 <!--
43 | Configuration properties for the OSGi maven-bundle-plugin
44 -->
45 <osgi.export>com.fasterxml.jackson.annotation.*;version=${project.version}</osgi.export>
Tatu Saloranta31266582011-12-22 21:20:15 -080046 </properties>
47
Tatu Saloranta31266582011-12-22 21:20:15 -080048 <dependencies>
49 <!-- No dependencies to core types (annotations that
50 do have dependencies are included in those packages)
51 -->
52 <!-- and for testing, JUnit is needed -->
53 <dependency>
54 <groupId>junit</groupId>
55 <artifactId>junit</artifactId>
56 <version>4.8.2</version>
57 <scope>test</scope>
58 </dependency>
59 </dependencies>
60
Tatu Saloranta31266582011-12-22 21:20:15 -080061</project>