|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
| 5 | + http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 6 | + <modelVersion>4.0.0</modelVersion> |
| 7 | + |
| 8 | + <parent> |
| 9 | + <groupId>io.github.simbo1905.json</groupId> |
| 10 | + <artifactId>parent</artifactId> |
| 11 | + <version>0.1.9</version> |
| 12 | + </parent> |
| 13 | + |
| 14 | + <artifactId>java.util.json.transforms</artifactId> |
| 15 | + <packaging>jar</packaging> |
| 16 | + <name>java.util.json Java21 Backport JSON Transforms</name> |
| 17 | + <url>https://simbo1905.github.io/java.util.json.Java21/</url> |
| 18 | + <scm> |
| 19 | + <connection>scm:git:https://github.com/simbo1905/java.util.json.Java21.git</connection> |
| 20 | + <developerConnection>scm:git:git@github.com:simbo1905/java.util.json.Java21.git</developerConnection> |
| 21 | + <url>https://github.com/simbo1905/java.util.json.Java21</url> |
| 22 | + <tag>HEAD</tag> |
| 23 | + </scm> |
| 24 | + <description>json-transforms implementation for the java.util.json Java 21 backport; parses transform JSON to an immutable program and applies it to JSON documents using JSONPath selectors.</description> |
| 25 | + |
| 26 | + <properties> |
| 27 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 28 | + <maven.compiler.release>21</maven.compiler.release> |
| 29 | + </properties> |
| 30 | + |
| 31 | + <dependencies> |
| 32 | + <dependency> |
| 33 | + <groupId>io.github.simbo1905.json</groupId> |
| 34 | + <artifactId>java.util.json</artifactId> |
| 35 | + <version>${project.version}</version> |
| 36 | + </dependency> |
| 37 | + |
| 38 | + <dependency> |
| 39 | + <groupId>io.github.simbo1905.json</groupId> |
| 40 | + <artifactId>java.util.json.jsonpath</artifactId> |
| 41 | + <version>${project.version}</version> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <!-- Test dependencies --> |
| 45 | + <dependency> |
| 46 | + <groupId>org.junit.jupiter</groupId> |
| 47 | + <artifactId>junit-jupiter-api</artifactId> |
| 48 | + <scope>test</scope> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>org.junit.jupiter</groupId> |
| 52 | + <artifactId>junit-jupiter-engine</artifactId> |
| 53 | + <scope>test</scope> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.junit.jupiter</groupId> |
| 57 | + <artifactId>junit-jupiter-params</artifactId> |
| 58 | + <scope>test</scope> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>org.assertj</groupId> |
| 62 | + <artifactId>assertj-core</artifactId> |
| 63 | + <scope>test</scope> |
| 64 | + </dependency> |
| 65 | + </dependencies> |
| 66 | + |
| 67 | + <build> |
| 68 | + <plugins> |
| 69 | + <!-- Treat all warnings as errors, enable all lint warnings --> |
| 70 | + <plugin> |
| 71 | + <groupId>org.apache.maven.plugins</groupId> |
| 72 | + <artifactId>maven-compiler-plugin</artifactId> |
| 73 | + <configuration> |
| 74 | + <release>21</release> |
| 75 | + <compilerArgs> |
| 76 | + <arg>-Xlint:all</arg> |
| 77 | + <arg>-Werror</arg> |
| 78 | + <arg>-Xdiags:verbose</arg> |
| 79 | + </compilerArgs> |
| 80 | + </configuration> |
| 81 | + </plugin> |
| 82 | + <plugin> |
| 83 | + <groupId>org.apache.maven.plugins</groupId> |
| 84 | + <artifactId>maven-surefire-plugin</artifactId> |
| 85 | + <configuration> |
| 86 | + <argLine>-ea</argLine> |
| 87 | + </configuration> |
| 88 | + </plugin> |
| 89 | + </plugins> |
| 90 | + </build> |
| 91 | +</project> |
| 92 | + |
0 commit comments