* [JAVA-18177] Moved server modules to jdk9-and-above profile * [JAVA-18177] Upgraded maven-war-plugin version * [JAVA-18146] Moved json-modules to jdk9-and-above profile * [JAVA-18151] Moved libraries-data module to jdk9-and-above profile * [JAVA-18176] Moved saas-modules to jdk9-and-above profile * [JAVA-18165] Moved patterns-modules to jdk9-and-above profile * [JAVA-18146] Fixed tests at gson module * [JAVA-18165] Upgraded maven-war-plugin version * [JAVA-16377] Moved apache-cxf-module to jdk9-and-above profile + comment out cxf spring * [JAVA-18151] Testing maven compiler plugin * [JAVA-18151] Ignored 2 test cases * [JAVA-18151] import javassist dependency manually * [JAVA-16377] Upgraded spring version + uncomment cxf-spring module
		
			
				
	
	
		
			178 lines
		
	
	
		
			7.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			178 lines
		
	
	
		
			7.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?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>json-2</artifactId>
 | 
						|
    <version>0.0.1-SNAPSHOT</version>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <artifactId>json-modules</artifactId>
 | 
						|
        <version>1.0.0-SNAPSHOT</version>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.json</groupId>
 | 
						|
            <artifactId>json</artifactId>
 | 
						|
            <version>${json.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba</groupId>
 | 
						|
            <artifactId>fastjson</artifactId>
 | 
						|
            <version>${fastjson.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.jsonschema2pojo</groupId>
 | 
						|
            <artifactId>jsonschema2pojo-core</artifactId>
 | 
						|
            <version>${jsonschema2pojo-core.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.jsoniter</groupId>
 | 
						|
            <artifactId>jsoniter</artifactId>
 | 
						|
            <version>${jsoniter.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.squareup.moshi</groupId>
 | 
						|
            <artifactId>moshi</artifactId>
 | 
						|
            <version>${moshi.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.squareup.moshi</groupId>
 | 
						|
            <artifactId>moshi-adapters</artifactId>
 | 
						|
            <version>${moshi.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-lang3</artifactId>
 | 
						|
            <version>${commons-lang3.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
            <artifactId>jackson-annotations</artifactId>
 | 
						|
            <version>${jackson.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
            <artifactId>jackson-databind</artifactId>
 | 
						|
            <version>${jackson.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.io-informatics.oss</groupId>
 | 
						|
            <artifactId>jackson-jsonld</artifactId>
 | 
						|
            <version>${jackson-jsonld.version}</version>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <artifactId>jackson-databind</artifactId>
 | 
						|
                    <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
                </exclusion>
 | 
						|
                <exclusion>
 | 
						|
                    <artifactId>jackson-annotations</artifactId>
 | 
						|
                    <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
                </exclusion>
 | 
						|
                <exclusion>
 | 
						|
                    <artifactId>jackson-core</artifactId>
 | 
						|
                    <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
                </exclusion>
 | 
						|
                <exclusion>
 | 
						|
                    <artifactId>jsonld-java</artifactId>
 | 
						|
                    <groupId>com.github.jsonld-java</groupId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>de.escalon.hypermedia</groupId>
 | 
						|
            <artifactId>hydra-jsonld</artifactId>
 | 
						|
            <version>${hydra-jsonld.version}</version>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <artifactId>jackson-databind</artifactId>
 | 
						|
                    <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.github.jsonld-java</groupId>
 | 
						|
            <artifactId>jsonld-java</artifactId>
 | 
						|
            <version>${jsonld-java.version}</version>
 | 
						|
            <exclusions>
 | 
						|
                <exclusion>
 | 
						|
                    <artifactId>jackson-core</artifactId>
 | 
						|
                    <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
                </exclusion>
 | 
						|
                <exclusion>
 | 
						|
                    <artifactId>jackson-databind</artifactId>
 | 
						|
                    <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
                </exclusion>
 | 
						|
            </exclusions>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>commons-io</groupId>
 | 
						|
            <artifactId>commons-io</artifactId>
 | 
						|
            <version>2.11.0</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.junit.jupiter</groupId>
 | 
						|
            <artifactId>junit-jupiter</artifactId>
 | 
						|
            <version>RELEASE</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>javax.annotation</groupId>
 | 
						|
            <artifactId>javax.annotation-api</artifactId>
 | 
						|
            <version>1.3.2</version>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <pluginManagement>
 | 
						|
            <plugins>
 | 
						|
                <!--This plugin's configuration is used to store Eclipse m2e settings only. -->
 | 
						|
                <!-- It has no influence on the Maven build itself. -->
 | 
						|
                <plugin>
 | 
						|
                    <groupId>org.eclipse.m2e</groupId>
 | 
						|
                    <artifactId>lifecycle-mapping</artifactId>
 | 
						|
                    <version>1.0.0</version>
 | 
						|
                    <configuration>
 | 
						|
                        <lifecycleMappingMetadata>
 | 
						|
                            <pluginExecutions>
 | 
						|
                                <pluginExecution>
 | 
						|
                                    <pluginExecutionFilter>
 | 
						|
                                        <groupId>
 | 
						|
                                            org.apache.maven.plugins
 | 
						|
                                        </groupId>
 | 
						|
                                        <artifactId>
 | 
						|
                                            maven-pmd-plugin
 | 
						|
                                        </artifactId>
 | 
						|
                                        <versionRange>
 | 
						|
                                            [3.13.0,)
 | 
						|
                                        </versionRange>
 | 
						|
                                        <goals>
 | 
						|
                                            <goal>check</goal>
 | 
						|
                                        </goals>
 | 
						|
                                    </pluginExecutionFilter>
 | 
						|
                                    <action>
 | 
						|
                                        <ignore></ignore>
 | 
						|
                                    </action>
 | 
						|
                                </pluginExecution>
 | 
						|
                            </pluginExecutions>
 | 
						|
                        </lifecycleMappingMetadata>
 | 
						|
                    </configuration>
 | 
						|
                </plugin>
 | 
						|
            </plugins>
 | 
						|
        </pluginManagement>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <jsoniter.version>0.9.23</jsoniter.version>
 | 
						|
        <moshi.version>1.9.2</moshi.version>
 | 
						|
        <fastjson.version>1.2.21</fastjson.version>
 | 
						|
        <json.version>20211205</json.version>
 | 
						|
        <jsonschema2pojo-core.version>1.1.1</jsonschema2pojo-core.version>
 | 
						|
        <jackson-jsonld.version>0.1.1</jackson-jsonld.version>
 | 
						|
        <hydra-jsonld.version>0.4.2</hydra-jsonld.version>
 | 
						|
        <jsonld-java.version>0.13.0</jsonld-java.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |