json-smart-2.4.8.pom 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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>net.minidev</groupId>
  4. <artifactId>json-smart</artifactId>
  5. <version>2.4.8</version>
  6. <name>JSON Small and Fast Parser</name>
  7. <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>
  8. <packaging>bundle</packaging>
  9. <url>https://urielch.github.io/</url>
  10. <organization>
  11. <name>Chemouni Uriel</name>
  12. <url>https://urielch.github.io/</url>
  13. </organization>
  14. <developers>
  15. <developer>
  16. <id>uriel</id>
  17. <name>Uriel Chemouni</name>
  18. <email>uchemouni@gmail.com</email>
  19. <timezone>GMT+3</timezone>
  20. </developer>
  21. <developer>
  22. <id>erav</id>
  23. <name>Eitan Raviv</name>
  24. <email>adoneitan@gmail.com</email>
  25. <timezone>GMT+2</timezone>
  26. </developer>
  27. <developer>
  28. <id>Shoothzj</id>
  29. <name>ZhangJian He</name>
  30. <email>shoothzj@gmail.com</email>
  31. <timezone>GMT+8</timezone>
  32. </developer>
  33. </developers>
  34. <licenses>
  35. <license>
  36. <name>The Apache Software License, Version 2.0</name>
  37. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  38. <distribution>repo</distribution>
  39. <comments>All files under Apache 2</comments>
  40. </license>
  41. </licenses>
  42. <properties>
  43. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  44. <maven.compiler.source>1.8</maven.compiler.source>
  45. <maven.compiler.target>1.8</maven.compiler.target>
  46. </properties>
  47. <scm>
  48. <connection>scm:git:https://github.com/netplex/json-smart-v2.git</connection>
  49. <developerConnection>scm:git:https://github.com/netplex/json-smart-v2.git</developerConnection>
  50. <url>https://github.com/netplex/json-smart-v2</url>
  51. </scm>
  52. <distributionManagement>
  53. <snapshotRepository>
  54. <id>ossrh</id>
  55. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  56. </snapshotRepository>
  57. <repository>
  58. <id>ossrh</id>
  59. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  60. </repository>
  61. </distributionManagement>
  62. <!-- release with: mvn clean deploy -P release-sign-artifacts-->
  63. <profiles>
  64. <profile>
  65. <id>release-sign-artifacts</id>
  66. <activation>
  67. <property>
  68. <!-- will be set by the release plugin upon performing mvn release:perform -->
  69. <name>performRelease</name>
  70. <value>true</value>
  71. </property>
  72. </activation>
  73. <properties>
  74. <!-- 2021 rsa4096 key-->
  75. <gpg.keyname>53BE126D</gpg.keyname>
  76. <!-- <gpg.keyname>Uriel Chemouni (dev) <uchemouni@gmail.com></gpg.keyname> -->
  77. </properties>
  78. <build>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-gpg-plugin</artifactId>
  83. <version>1.6</version>
  84. <executions>
  85. <execution>
  86. <id>sign-artifacts</id>
  87. <phase>verify</phase>
  88. <goals>
  89. <goal>sign</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. <!-- Publish also javadocs when releasing - required by Sonatype -->
  95. <plugin>
  96. <groupId>org.apache.maven.plugins</groupId>
  97. <artifactId>maven-javadoc-plugin</artifactId>
  98. <version>3.2.0</version>
  99. <configuration>
  100. <source>8</source>
  101. </configuration>
  102. <executions>
  103. <execution>
  104. <id>attach-javadocs</id>
  105. <goals>
  106. <goal>jar</goal>
  107. </goals>
  108. </execution>
  109. </executions>
  110. </plugin>
  111. <!-- Release Plugin (Update version in POM before/after release, create
  112. tag, deploy) to try: mvn release:prepare -DdryRun=true && mvn release:clean
  113. to perform: mvn release:prepare release:perform Read http://nexus.sonatype.org/oss-repository-hosting.html#3
  114. for instructions on releasing to this project's Sonatype repository -->
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-release-plugin</artifactId>
  118. <version>3.0.0-M1</version>
  119. <configuration>
  120. <mavenExecutorId>forked-path</mavenExecutorId>
  121. <arguments>-Psonatype-oss-release</arguments>
  122. <autoVersionSubmodules>false</autoVersionSubmodules>
  123. <useReleaseProfile>false</useReleaseProfile>
  124. <releaseProfiles>release</releaseProfiles>
  125. <goals>deploy</goals>
  126. </configuration>
  127. </plugin>
  128. </plugins>
  129. </build>
  130. </profile>
  131. <profile>
  132. <id>include-sources</id>
  133. <build>
  134. <resources>
  135. <resource>
  136. <targetPath>/</targetPath>
  137. <filtering>true</filtering>
  138. <directory>src/main/java</directory>
  139. <includes>
  140. <include>**/*.java</include>
  141. </includes>
  142. </resource>
  143. </resources>
  144. </build>
  145. </profile>
  146. </profiles>
  147. <build>
  148. <plugins>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-source-plugin</artifactId>
  152. <version>3.2.1</version>
  153. <executions>
  154. <execution>
  155. <id>bind-sources</id>
  156. <goals>
  157. <goal>jar-no-fork</goal>
  158. </goals>
  159. </execution>
  160. </executions>
  161. </plugin>
  162. <plugin>
  163. <groupId>org.apache.maven.plugins</groupId>
  164. <artifactId>maven-compiler-plugin</artifactId>
  165. <version>3.8.1</version>
  166. <configuration>
  167. <encoding>UTF-8</encoding>
  168. <source>${maven.compiler.source}</source>
  169. <target>${maven.compiler.target}</target>
  170. </configuration>
  171. </plugin>
  172. <plugin>
  173. <groupId>org.apache.maven.plugins</groupId>
  174. <artifactId>maven-resources-plugin</artifactId>
  175. <version>3.2.0</version>
  176. <configuration>
  177. <encoding>UTF-8</encoding>
  178. </configuration>
  179. </plugin>
  180. <plugin>
  181. <groupId>org.apache.maven.plugins</groupId>
  182. <artifactId>maven-jar-plugin</artifactId>
  183. <version>3.2.0</version>
  184. </plugin>
  185. <plugin>
  186. <groupId>org.apache.maven.plugins</groupId>
  187. <artifactId>maven-javadoc-plugin</artifactId>
  188. <version>3.2.0</version>
  189. <!-- ONLY NEEDED With jdk 1.7+ -->
  190. <configuration>
  191. <source>8</source>
  192. <failOnError>false</failOnError>
  193. <!-- <additionalparam>-Xdoclint:none</additionalparam> -->
  194. </configuration>
  195. <executions>
  196. <execution>
  197. <id>attach-javadocs</id>
  198. <goals>
  199. <goal>jar</goal>
  200. </goals>
  201. </execution>
  202. </executions>
  203. </plugin>
  204. <plugin>
  205. <groupId>org.apache.felix</groupId>
  206. <artifactId>maven-bundle-plugin</artifactId>
  207. <version>5.1.2</version>
  208. <extensions>true</extensions>
  209. <configuration>
  210. <instructions>
  211. <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
  212. <Bundle-Name>${project.artifactId}</Bundle-Name>
  213. <Bundle-Version>${project.version}</Bundle-Version>
  214. <Export-Package>
  215. net.minidev.json, net.minidev.json.annotate,
  216. net.minidev.json.parser,
  217. net.minidev.json.reader,
  218. net.minidev.json.writer
  219. </Export-Package>
  220. </instructions>
  221. </configuration>
  222. </plugin>
  223. </plugins>
  224. </build>
  225. <dependencies>
  226. <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
  227. <dependency>
  228. <groupId>org.junit.jupiter</groupId>
  229. <artifactId>junit-jupiter-api</artifactId>
  230. <version>5.7.1</version>
  231. <scope>test</scope>
  232. </dependency>
  233. <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-params -->
  234. <dependency>
  235. <groupId>org.junit.jupiter</groupId>
  236. <artifactId>junit-jupiter-params</artifactId>
  237. <version>5.7.1</version>
  238. <scope>test</scope>
  239. </dependency>
  240. <!-- https://mvnrepository.com/artifact/net.minidev/accessors-smart -->
  241. <dependency>
  242. <groupId>net.minidev</groupId>
  243. <artifactId>accessors-smart</artifactId>
  244. <version>2.4.8</version>
  245. </dependency>
  246. </dependencies>
  247. </project>