json-smart-2.4.6.pom 8.0 KB

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