| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <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">
- <!-- this POM is released under an Apache 2.0 license -->
- <modelVersion>4.0.0</modelVersion>
- <artifactId>json-smart</artifactId>
- <packaging>bundle</packaging>
- <version>1.3.3</version>
- <parent>
- <groupId>net.minidev</groupId>
- <artifactId>parent</artifactId>
- <version>1.3.2</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
- <name>JSON Small and Fast Parser</name>
- <description>
- JSON (JavaScript Object Notation) is a lightweight data-interchange format.
- It is easy for humans to read and write. It is easy for machines to parse and generate.
- It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition
- - December 1999. JSON is a text format that is completely language independent but uses
- conventions that are familiar to programmers of the C-family of languages, including C, C++, C#,
- Java, JavaScript, Perl, Python, and many others.
- These properties make JSON an ideal data-interchange language.
- </description>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>2.3.7</version>
- <extensions>true</extensions>
- <configuration>
- <instructions>
- <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
- <Bundle-Name>${project.artifactId}</Bundle-Name>
- <Bundle-Version>${project.version}</Bundle-Version>
- <Export-Package>net.minidev.json,net.minidev.json.parser,net.minidev.json.serialiser</Export-Package>
- <!-- Private-Package></Private-Package -->
- </instructions>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|