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+ <groupId >org.json</groupId >
4+ <artifactId >json</artifactId >
5+ <version >0.0.1-SNAPSHOT</version >
6+
7+ <name >JSON (JavaScript Object Notation)</name >
8+ <description >
9+ JSON (JavaScript Object Notation) is a lightweight data-interchange format.
10+ It is easy for humans to read and write. It is easy for machines to parse and generate.
11+ It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition
12+ - December 1999. JSON is a text format that is completely language independent but uses
13+ conventions that are familiar to programmers of the C-family of languages, including C, C++, C#,
14+ Java, JavaScript, Perl, Python, and many others.
15+ These properties make JSON an ideal data-interchange language.
16+ </description >
17+ <url >http://www.json.org/java/index.html</url >
18+ <licenses >
19+ <license >
20+ <name >provided without support or warranty</name >
21+ <url >http://www.json.org/license.html</url >
22+ <distribution >repo</distribution >
23+ </license >
24+ </licenses >
25+
26+ <organization >
27+ <name >JSON</name >
28+ <url >http://json.org/</url >
29+ </organization >
30+
31+ <distributionManagement >
32+ <repository >
33+ <id >cloud.archiva.internal</id >
34+ <url >http://archiva.cliff.cloudburrito.com:8080/archiva/repository/internal/</url >
35+ </repository >
36+ <snapshotRepository >
37+ <id >cloud.archiva.snapshots</id >
38+ <url >http://archiva.cliff.cloudburrito.com:8080/archiva/repository/snapshots/</url >
39+ </snapshotRepository >
40+ </distributionManagement >
41+
42+ <build >
43+ <plugins >
44+ <plugin >
45+ <artifactId >maven-compiler-plugin</artifactId >
46+ <version >3.1</version >
47+ <configuration >
48+ <source >1.3</source >
49+ <target >1.3</target >
50+ </configuration >
51+ </plugin >
52+ </plugins >
53+ </build >
54+
55+ </project >
0 commit comments