Skip to content

Commit a80cc68

Browse files
committed
Rename json-java21-transforms to json-java21-jdt (JSON Document Transforms)
- Rename module from json-java21-transforms to json-java21-jdt - New package: json.java21.jdt with Jdt engine and JdtException - Implement core JDT operations: replace, remove, rename, merge - Execution order: Rename → Remove → Merge → Replace - 18 unit tests + 15 Microsoft fixture tests (33 total) - Path-based operations deferred to Skipped/ folders for future work To verify: mvn test -pl json-java21-jdt
1 parent 4364b0f commit a80cc68

File tree

94 files changed

+1106
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+1106
-8
lines changed

json-java21-jdt/pom.xml

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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.jdt</artifactId>
15+
<packaging>jar</packaging>
16+
<name>java.util.json Java21 Backport JDT</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 Document Transforms (JDT) implementation for the java.util.json Java 21 backport; transforms JSON documents using declarative transform specifications.</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+
<dependency>
38+
<groupId>io.github.simbo1905.json</groupId>
39+
<artifactId>java.util.json.jsonpath</artifactId>
40+
<version>${project.version}</version>
41+
</dependency>
42+
43+
<!-- Test dependencies -->
44+
<dependency>
45+
<groupId>org.junit.jupiter</groupId>
46+
<artifactId>junit-jupiter-api</artifactId>
47+
<scope>test</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.junit.jupiter</groupId>
51+
<artifactId>junit-jupiter-engine</artifactId>
52+
<scope>test</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.junit.jupiter</groupId>
56+
<artifactId>junit-jupiter-params</artifactId>
57+
<scope>test</scope>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.assertj</groupId>
61+
<artifactId>assertj-core</artifactId>
62+
<scope>test</scope>
63+
</dependency>
64+
</dependencies>
65+
66+
<build>
67+
<plugins>
68+
<!-- Treat all warnings as errors, enable all lint warnings -->
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-compiler-plugin</artifactId>
72+
<configuration>
73+
<release>21</release>
74+
<compilerArgs>
75+
<arg>-Xlint:all</arg>
76+
<arg>-Werror</arg>
77+
<arg>-Xdiags:verbose</arg>
78+
</compilerArgs>
79+
</configuration>
80+
</plugin>
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-surefire-plugin</artifactId>
84+
<configuration>
85+
<argLine>-ea</argLine>
86+
<systemPropertyVariables>
87+
<jdt.test.resources>${project.basedir}/src/test/resources</jdt.test.resources>
88+
</systemPropertyVariables>
89+
</configuration>
90+
</plugin>
91+
</plugins>
92+
</build>
93+
</project>

0 commit comments

Comments
 (0)