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 <parent> 3 <artifactId>javaparser-parent</artifactId> 4 <groupId>com.github.javaparser</groupId> 5 <version>3.14.10-SNAPSHOT</version> 6 </parent> 7 <modelVersion>4.0.0</modelVersion> 8 9 <artifactId>javaparser-core-serialization</artifactId> 10 <description>Serializers for the JavaParser AST.</description> 11 12 <licenses> 13 <license> 14 <name>GNU Lesser General Public License</name> 15 <url>http://www.gnu.org/licenses/lgpl-3.0.html</url> 16 <distribution>repo</distribution> 17 </license> 18 <license> 19 <name>Apache License, Version 2.0</name> 20 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 21 <distribution>repo</distribution> 22 <comments>A business-friendly OSS license</comments> 23 </license> 24 </licenses> 25 26 <properties> 27 <java.version>1.8</java.version> 28 <build.timestamp>${maven.build.timestamp}</build.timestamp> 29 </properties> 30 31 <build> 32 <plugins> 33 <plugin> 34 <groupId>org.apache.maven.plugins</groupId> 35 <artifactId>maven-jar-plugin</artifactId> 36 <configuration> 37 <archive> 38 <manifestEntries> 39 <Automatic-Module-Name>com.github.javaparser.core.serialization</Automatic-Module-Name> 40 </manifestEntries> 41 </archive> 42 </configuration> 43 </plugin> 44 45 </plugins> 46 </build> 47 48 <dependencies> 49 <dependency> 50 <groupId>org.junit.jupiter</groupId> 51 <artifactId>junit-jupiter-engine</artifactId> 52 </dependency> 53 <dependency> 54 <groupId>com.github.javaparser</groupId> 55 <artifactId>javaparser-core</artifactId> 56 <version>${project.version}</version> 57 </dependency> 58 <dependency> 59 <groupId>javax.json</groupId> 60 <artifactId>javax.json-api</artifactId> 61 <version>1.1.4</version> 62 </dependency> 63 <dependency> 64 <groupId>org.glassfish</groupId> 65 <artifactId>javax.json</artifactId> 66 <version>1.1.4</version> 67 <scope>test</scope> 68 </dependency> 69 </dependencies> 70 71</project> 72