File: pom.android.xml

package info (click to toggle)
libandroid-json-org-java 20121204-20090211-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 332 kB
  • sloc: java: 3,657; xml: 134; makefile: 14
file content (57 lines) | stat: -rw-r--r-- 1,986 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.json</groupId>
  <artifactId>json</artifactId>
  <version>20090211</version>
  <name>androids rewrite of the evil licensed json.org</name>
  <packaging>jar</packaging>
  <description>
Json.org is a popular java library to parse and create json string from the
author of the json standard Douglas Crockford. His implementation however is
not free software.
Therefor the Android team did a cleanroom reimplementation of a json library
to be used inplace of the original one.

This version is used in Android and has a different API from the most recent
version of org.json published on maven-central, see README.Debian for details.
  </description>
  <url>https://android.googlesource.com/platform/libcore/+/master/json</url>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <organization>
    <name>The Android Open Source Project</name>
    <!--url></url-->
  </organization>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>

                </configuration>
            </plugin>
        </plugins>
    </build>

  <dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.x</version>
        <scope>test</scope>
    </dependency>
  </dependencies>
</project>