-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpom.xml
2 lines (2 loc) · 1.42 KB
/
pom.xml
1
2
<?xml version="1.0" encoding="utf8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"><modelVersion>4.0.0</modelVersion><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><maven.compiler.source>22</maven.compiler.source><maven.compiler.target>22</maven.compiler.target></properties><groupId>org.libxmq</groupId><artifactId>XMQ</artifactId><version>1.0-SNAPSHOT</version><build><directory>build</directory><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><version>3.8.0</version><configuration><release>22</release></configuration></plugin></plugins></build><dependencies><dependency><groupId>org.w3c</groupId><artifactId>dom</artifactId><version>2.3.0-jaxb-1.0.6</version></dependency><!--https://mvnrepository.com/artifact/javax.xml.parsers/jaxp-api--><dependency><groupId>javax.xml.parsers</groupId><artifactId>jaxp-api</artifactId><version>1.4.5</version></dependency><dependency><groupId>javax.xml.bind</groupId><artifactId>jaxb-api</artifactId><version>2.3.0</version></dependency><dependency><groupId>com.sun.xml.bind</groupId><artifactId>jaxb-core</artifactId><version>2.3.0</version></dependency><dependency><groupId>com.sun.xml.bind</groupId><artifactId>jaxb-impl</artifactId><version>2.3.0</version></dependency><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.13.1</version><scope>test</scope></dependency></dependencies></project>