최초 세팅
This commit is contained in:
@@ -0,0 +1,117 @@
|
||||
<?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">
|
||||
<!-- This module was also published with a richer model, Gradle metadata, -->
|
||||
<!-- which should be used instead. Do not delete the following line which -->
|
||||
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
||||
<!-- that they should prefer consuming it instead. -->
|
||||
<!-- do_not_remove: published-with-gradle-metadata -->
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.fasterxml.jackson.module</groupId>
|
||||
<artifactId>jackson-modules-java8</artifactId>
|
||||
<version>2.14.2</version>
|
||||
</parent>
|
||||
<artifactId>jackson-module-parameter-names</artifactId>
|
||||
<name>Jackson-module-parameter-names</name>
|
||||
<packaging>bundle</packaging>
|
||||
<description>Add-on module for Jackson (http://jackson.codehaus.org) to support
|
||||
introspection of method/constructor parameter names, without having to add explicit property name annotation.
|
||||
</description>
|
||||
|
||||
<properties>
|
||||
<!-- explicitly target JDK 8 -->
|
||||
<javac.src.version>1.8</javac.src.version>
|
||||
<javac.target.version>1.8</javac.target.version>
|
||||
<!-- Generate PackageVersion.java into this directory. -->
|
||||
<packageVersion.dir>com/fasterxml/jackson/module/paramnames</packageVersion.dir>
|
||||
<packageVersion.package>${project.groupId}.paramnames</packageVersion.package>
|
||||
|
||||
<assertj-core.version>3.8.0</assertj-core.version>
|
||||
<mockito-core.version>4.5.0</mockito-core.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.assertj</groupId>
|
||||
<artifactId>assertj-core</artifactId>
|
||||
<version>${assertj-core.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-core</artifactId>
|
||||
<version>${mockito-core.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-java</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>[1.8,)</version>
|
||||
</requireJavaVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.2</version>
|
||||
<inherited>true</inherited>
|
||||
<configuration>
|
||||
<source>${javac.src.version}</source>
|
||||
<target>${javac.target.version}</target>
|
||||
<showDeprecation>true</showDeprecation>
|
||||
<showWarnings>true</showWarnings>
|
||||
<optimize>true</optimize>
|
||||
<compilerArgs>
|
||||
<arg>-Xlint</arg>
|
||||
<arg>-parameters</arg>
|
||||
</compilerArgs>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<!-- Inherited from oss-base. Generate PackageVersion.java.-->
|
||||
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
||||
<artifactId>replacer</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>process-packageVersion</id>
|
||||
<phase>generate-sources</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>${version.plugin.surefire}</version>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>${packageVersion.dir}/failing/*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- 28-Mar-2019, tatu: Add rudimentary JDK9+ module info. To build with JDK 8
|
||||
will have to use `moduleInfoFile` as anything else requires JDK 9+
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.moditect</groupId>
|
||||
<artifactId>moditect-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
@@ -0,0 +1,112 @@
|
||||
{
|
||||
"formatVersion": "1.1",
|
||||
"component": {
|
||||
"group": "com.fasterxml.jackson.module",
|
||||
"module": "jackson-module-parameter-names",
|
||||
"version": "2.14.2",
|
||||
"attributes": {
|
||||
"org.gradle.status": "release"
|
||||
}
|
||||
},
|
||||
"createdBy": {
|
||||
"maven": {
|
||||
"version": "3.8.6"
|
||||
}
|
||||
},
|
||||
"variants": [
|
||||
{
|
||||
"name": "apiElements",
|
||||
"attributes": {
|
||||
"org.gradle.category": "library",
|
||||
"org.gradle.dependency.bundling": "external",
|
||||
"org.gradle.libraryelements": "jar",
|
||||
"org.gradle.usage": "java-api"
|
||||
},
|
||||
"dependencies": [
|
||||
{
|
||||
"group": "com.fasterxml.jackson.core",
|
||||
"module": "jackson-core",
|
||||
"version": {
|
||||
"requires": "2.14.2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "com.fasterxml.jackson.core",
|
||||
"module": "jackson-databind",
|
||||
"version": {
|
||||
"requires": "2.14.2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "com.fasterxml.jackson",
|
||||
"module": "jackson-bom",
|
||||
"version": {
|
||||
"requires": "2.14.2"
|
||||
},
|
||||
"attributes": {
|
||||
"org.gradle.category": "platform"
|
||||
},
|
||||
"endorseStrictVersions": true
|
||||
}
|
||||
],
|
||||
"files": [
|
||||
{
|
||||
"name": "jackson-module-parameter-names-2.14.2.jar",
|
||||
"url": "jackson-module-parameter-names-2.14.2.jar",
|
||||
"size": 8606,
|
||||
"sha512": "dc6596ae7ee4afc27779d50f27a9442e4cc500ffa5404901112fc7cbe4ef0bd24b3dba4926a6fd32acf53bc91830ff5ad690c0eeadf6c441810a91d00c97b9f0",
|
||||
"sha256": "727311bf8bc2c33c9d5c14406ee8eb05b69418494a1b34da2202b82759e6bc6c",
|
||||
"sha1": "8dade108267ab956802cdfb62b2fcfcbdd309c70",
|
||||
"md5": "b3ab700bb690e9b3e83dcdef11fbf4a"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "runtimeElements",
|
||||
"attributes": {
|
||||
"org.gradle.category": "library",
|
||||
"org.gradle.dependency.bundling": "external",
|
||||
"org.gradle.libraryelements": "jar",
|
||||
"org.gradle.usage": "java-runtime"
|
||||
},
|
||||
"dependencies": [
|
||||
{
|
||||
"group": "com.fasterxml.jackson.core",
|
||||
"module": "jackson-core",
|
||||
"version": {
|
||||
"requires": "2.14.2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "com.fasterxml.jackson.core",
|
||||
"module": "jackson-databind",
|
||||
"version": {
|
||||
"requires": "2.14.2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "com.fasterxml.jackson",
|
||||
"module": "jackson-bom",
|
||||
"version": {
|
||||
"requires": "2.14.2"
|
||||
},
|
||||
"attributes": {
|
||||
"org.gradle.category": "platform"
|
||||
},
|
||||
"endorseStrictVersions": true
|
||||
}
|
||||
],
|
||||
"files": [
|
||||
{
|
||||
"name": "jackson-module-parameter-names-2.14.2.jar",
|
||||
"url": "jackson-module-parameter-names-2.14.2.jar",
|
||||
"size": 8606,
|
||||
"sha512": "dc6596ae7ee4afc27779d50f27a9442e4cc500ffa5404901112fc7cbe4ef0bd24b3dba4926a6fd32acf53bc91830ff5ad690c0eeadf6c441810a91d00c97b9f0",
|
||||
"sha256": "727311bf8bc2c33c9d5c14406ee8eb05b69418494a1b34da2202b82759e6bc6c",
|
||||
"sha1": "8dade108267ab956802cdfb62b2fcfcbdd309c70",
|
||||
"md5": "b3ab700bb690e9b3e83dcdef11fbf4a"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
{
|
||||
"formatVersion": "1.1",
|
||||
"component": {
|
||||
"group": "com.fasterxml.jackson.module",
|
||||
"module": "jackson-module-parameter-names",
|
||||
"version": "2.15.3",
|
||||
"attributes": {
|
||||
"org.gradle.status": "release"
|
||||
}
|
||||
},
|
||||
"createdBy": {
|
||||
"maven": {
|
||||
"version": "3.6.3"
|
||||
}
|
||||
},
|
||||
"variants": [
|
||||
{
|
||||
"name": "apiElements",
|
||||
"attributes": {
|
||||
"org.gradle.category": "library",
|
||||
"org.gradle.dependency.bundling": "external",
|
||||
"org.gradle.libraryelements": "jar",
|
||||
"org.gradle.usage": "java-api"
|
||||
},
|
||||
"dependencies": [
|
||||
{
|
||||
"group": "com.fasterxml.jackson.core",
|
||||
"module": "jackson-core",
|
||||
"version": {
|
||||
"requires": "2.15.3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "com.fasterxml.jackson.core",
|
||||
"module": "jackson-databind",
|
||||
"version": {
|
||||
"requires": "2.15.3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "com.fasterxml.jackson",
|
||||
"module": "jackson-bom",
|
||||
"version": {
|
||||
"requires": "2.15.3"
|
||||
},
|
||||
"attributes": {
|
||||
"org.gradle.category": "platform"
|
||||
},
|
||||
"endorseStrictVersions": true
|
||||
}
|
||||
],
|
||||
"files": [
|
||||
{
|
||||
"name": "jackson-module-parameter-names-2.15.3.jar",
|
||||
"url": "jackson-module-parameter-names-2.15.3.jar",
|
||||
"size": 9475,
|
||||
"sha512": "f49481d708c31e02f2bead484c3ca254fc8f9588b017ee574860015da6d1bc04992591faa922dabedc12aa5b6d65c5aa54b543edfcdef3f021f1e5f27711b1d0",
|
||||
"sha256": "68ed385753becdcb5d9eb5b37b968ebfe5eef02e7643c94d367a4def73869cbf",
|
||||
"sha1": "c81b50492ab771ba4abed563ea1acd74aa4324a6",
|
||||
"md5": "23e2a6bfccf73142a5b507f29f8215e3"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "runtimeElements",
|
||||
"attributes": {
|
||||
"org.gradle.category": "library",
|
||||
"org.gradle.dependency.bundling": "external",
|
||||
"org.gradle.libraryelements": "jar",
|
||||
"org.gradle.usage": "java-runtime"
|
||||
},
|
||||
"dependencies": [
|
||||
{
|
||||
"group": "com.fasterxml.jackson.core",
|
||||
"module": "jackson-core",
|
||||
"version": {
|
||||
"requires": "2.15.3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "com.fasterxml.jackson.core",
|
||||
"module": "jackson-databind",
|
||||
"version": {
|
||||
"requires": "2.15.3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"group": "com.fasterxml.jackson",
|
||||
"module": "jackson-bom",
|
||||
"version": {
|
||||
"requires": "2.15.3"
|
||||
},
|
||||
"attributes": {
|
||||
"org.gradle.category": "platform"
|
||||
},
|
||||
"endorseStrictVersions": true
|
||||
}
|
||||
],
|
||||
"files": [
|
||||
{
|
||||
"name": "jackson-module-parameter-names-2.15.3.jar",
|
||||
"url": "jackson-module-parameter-names-2.15.3.jar",
|
||||
"size": 9475,
|
||||
"sha512": "f49481d708c31e02f2bead484c3ca254fc8f9588b017ee574860015da6d1bc04992591faa922dabedc12aa5b6d65c5aa54b543edfcdef3f021f1e5f27711b1d0",
|
||||
"sha256": "68ed385753becdcb5d9eb5b37b968ebfe5eef02e7643c94d367a4def73869cbf",
|
||||
"sha1": "c81b50492ab771ba4abed563ea1acd74aa4324a6",
|
||||
"md5": "23e2a6bfccf73142a5b507f29f8215e3"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,117 @@
|
||||
<?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">
|
||||
<!-- This module was also published with a richer model, Gradle metadata, -->
|
||||
<!-- which should be used instead. Do not delete the following line which -->
|
||||
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
||||
<!-- that they should prefer consuming it instead. -->
|
||||
<!-- do_not_remove: published-with-gradle-metadata -->
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.fasterxml.jackson.module</groupId>
|
||||
<artifactId>jackson-modules-java8</artifactId>
|
||||
<version>2.15.3</version>
|
||||
</parent>
|
||||
<artifactId>jackson-module-parameter-names</artifactId>
|
||||
<name>Jackson-module-parameter-names</name>
|
||||
<packaging>bundle</packaging>
|
||||
<description>Add-on module for Jackson (http://jackson.codehaus.org) to support
|
||||
introspection of method/constructor parameter names, without having to add explicit property name annotation.
|
||||
</description>
|
||||
|
||||
<properties>
|
||||
<!-- explicitly target JDK 8 -->
|
||||
<javac.src.version>1.8</javac.src.version>
|
||||
<javac.target.version>1.8</javac.target.version>
|
||||
<!-- Generate PackageVersion.java into this directory. -->
|
||||
<packageVersion.dir>com/fasterxml/jackson/module/paramnames</packageVersion.dir>
|
||||
<packageVersion.package>${project.groupId}.paramnames</packageVersion.package>
|
||||
|
||||
<assertj-core.version>3.8.0</assertj-core.version>
|
||||
<mockito-core.version>4.5.0</mockito-core.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.assertj</groupId>
|
||||
<artifactId>assertj-core</artifactId>
|
||||
<version>${assertj-core.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-core</artifactId>
|
||||
<version>${mockito-core.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-java</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireJavaVersion>
|
||||
<version>[1.8,)</version>
|
||||
</requireJavaVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.2</version>
|
||||
<inherited>true</inherited>
|
||||
<configuration>
|
||||
<source>${javac.src.version}</source>
|
||||
<target>${javac.target.version}</target>
|
||||
<showDeprecation>true</showDeprecation>
|
||||
<showWarnings>true</showWarnings>
|
||||
<optimize>true</optimize>
|
||||
<compilerArgs>
|
||||
<arg>-Xlint</arg>
|
||||
<arg>-parameters</arg>
|
||||
</compilerArgs>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<!-- Inherited from oss-base. Generate PackageVersion.java.-->
|
||||
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
||||
<artifactId>replacer</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>process-packageVersion</id>
|
||||
<phase>generate-sources</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>${version.plugin.surefire}</version>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>${packageVersion.dir}/failing/*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- 28-Mar-2019, tatu: Add rudimentary JDK9+ module info. To build with JDK 8
|
||||
will have to use `moduleInfoFile` as anything else requires JDK 9+
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.moditect</groupId>
|
||||
<artifactId>moditect-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
Reference in New Issue
Block a user