Merge pull request #14051 from eugenp/BAEL-5905-v2
BAEL-5905 move article
This commit is contained in:
commit
e80e82c746
|
@ -18,5 +18,4 @@ Remember, for advanced libraries like [Jackson](/jackson) and [JUnit](/testing-m
|
||||||
- [Guide to JDeferred](https://www.baeldung.com/jdeferred)
|
- [Guide to JDeferred](https://www.baeldung.com/jdeferred)
|
||||||
- [Introduction to MBassador](https://www.baeldung.com/mbassador)
|
- [Introduction to MBassador](https://www.baeldung.com/mbassador)
|
||||||
- [Using Pairs in Java](https://www.baeldung.com/java-pairs)
|
- [Using Pairs in Java](https://www.baeldung.com/java-pairs)
|
||||||
- [Analyze, Generate and Transform Code Using Spoon in Java](https://www.baeldung.com/java-spoon-analyze-generate-transform-code)
|
|
||||||
- More articles [[<-- prev]](/libraries-3) [[next -->]](/libraries-5)
|
- More articles [[<-- prev]](/libraries-3) [[next -->]](/libraries-5)
|
||||||
|
|
|
@ -110,12 +110,6 @@
|
||||||
<version>${javafx.version}</version>
|
<version>${javafx.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>fr.inria.gforge.spoon</groupId>
|
|
||||||
<artifactId>spoon-core</artifactId>
|
|
||||||
<version>${spoon-core.version}</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
<artifactId>jackson-core</artifactId>
|
<artifactId>jackson-core</artifactId>
|
||||||
|
@ -150,7 +144,6 @@
|
||||||
<glassfish.web.version>2.2.4</glassfish.web.version>
|
<glassfish.web.version>2.2.4</glassfish.web.version>
|
||||||
<olap4j.version>1.2.0</olap4j.version>
|
<olap4j.version>1.2.0</olap4j.version>
|
||||||
<javafx.version>19</javafx.version>
|
<javafx.version>19</javafx.version>
|
||||||
<spoon-core.version>10.3.0</spoon-core.version>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
### Relevant articles
|
||||||
|
- [Analyze, Generate and Transform Code Using Spoon in Java](https://www.baeldung.com/java-spoon-analyze-generate-transform-code)
|
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<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">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<artifactId>libraries-transform</artifactId>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<artifactId>parent-modules</artifactId>
|
||||||
|
<groupId>com.baeldung</groupId>
|
||||||
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>fr.inria.gforge.spoon</groupId>
|
||||||
|
<artifactId>spoon-core</artifactId>
|
||||||
|
<version>${spoon-core.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<spoon-core.version>10.3.0</spoon-core.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
</project>
|
2
pom.xml
2
pom.xml
|
@ -877,6 +877,7 @@
|
||||||
<module>libraries-primitive</module>
|
<module>libraries-primitive</module>
|
||||||
<module>libraries-rpc</module>
|
<module>libraries-rpc</module>
|
||||||
<module>libraries-server</module>
|
<module>libraries-server</module>
|
||||||
|
<module>libraries-transform</module>
|
||||||
|
|
||||||
<module>lucene</module>
|
<module>lucene</module>
|
||||||
<module>mapstruct</module>
|
<module>mapstruct</module>
|
||||||
|
@ -1140,6 +1141,7 @@
|
||||||
<module>libraries-primitive</module>
|
<module>libraries-primitive</module>
|
||||||
<module>libraries-rpc</module>
|
<module>libraries-rpc</module>
|
||||||
<module>libraries-server</module>
|
<module>libraries-server</module>
|
||||||
|
<module>libraries-transform</module>
|
||||||
|
|
||||||
<module>lucene</module>
|
<module>lucene</module>
|
||||||
<module>mapstruct</module>
|
<module>mapstruct</module>
|
||||||
|
|
Loading…
Reference in New Issue