summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.sdk.remotetools/META-INF/maven/com.googlecode.json-simple/json-simple/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.yocto.sdk.remotetools/META-INF/maven/com.googlecode.json-simple/json-simple/pom.xml')
-rw-r--r--plugins/org.yocto.sdk.remotetools/META-INF/maven/com.googlecode.json-simple/json-simple/pom.xml65
1 files changed, 65 insertions, 0 deletions
diff --git a/plugins/org.yocto.sdk.remotetools/META-INF/maven/com.googlecode.json-simple/json-simple/pom.xml b/plugins/org.yocto.sdk.remotetools/META-INF/maven/com.googlecode.json-simple/json-simple/pom.xml
new file mode 100644
index 0000000..eaa330d
--- /dev/null
+++ b/plugins/org.yocto.sdk.remotetools/META-INF/maven/com.googlecode.json-simple/json-simple/pom.xml
@@ -0,0 +1,65 @@
1<project>
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>com.googlecode.json-simple</groupId>
4 <artifactId>json-simple</artifactId>
5 <packaging>bundle</packaging>
6 <name>JSON.simple</name>
7 <version>1.1.1</version>
8 <description>A simple Java toolkit for JSON</description>
9 <url>http://code.google.com/p/json-simple/</url>
10 <licenses>
11 <license>
12 <name>The Apache Software License, Version 2.0</name>
13 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
14 </license>
15 </licenses>
16 <developers>
17 <developer>
18 <id>Yidong</id>
19 <name>Yidong Fang</name>
20 <roles>
21 <role>architect</role>
22 <role>developer</role>
23 </roles>
24 <timezone>+8</timezone>
25 </developer>
26 </developers>
27 <scm>
28 <connection>scm:svn:http://json-simple.googlecode.com/svn/trunk/</connection>
29 <developerConnection>scm:svn:http://json-simple.googlecode.com/svn/trunk/</developerConnection>
30 <url>http://json-simple.googlecode.com/svn/trunk/</url>
31 </scm>
32
33 <properties>
34 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35 </properties>
36
37 <dependencies>
38 <dependency>
39 <groupId>junit</groupId>
40 <artifactId>junit</artifactId>
41 <version>4.10</version>
42 </dependency>
43 </dependencies>
44
45 <build>
46 <plugins>
47 <plugin>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>maven-bundle-plugin</artifactId>
50 <version>2.3.6</version>
51 <extensions>true</extensions>
52 </plugin>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-compiler-plugin</artifactId>
56 <version>2.3.2</version>
57 <configuration>
58 <source>1.2</source>
59 <target>1.2</target>
60 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64</project>
65