mydsl-json
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.imrafaelmerino</groupId> <artifactId>mydsl-json</artifactId> <version>0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <groupId>com.github.imrafaelmerino</groupId> <artifactId>mydsl-json</artifactId> <packaging>jar</packaging> <version>0.1</version> <name>mydsl-com.dslplatform.json</name> <description>mydsl-com.dslplatform.json is a set of modifications of the library dsl-com.dslplatform.json that is used by com.dslplatform.json-values.</description> <url>https://github.com/imrafaelmerino/mydsl-json</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>imrafaelmerino</id> <name>Rafael Merino García</name> <email>imrafael.merino@gmail.com</email> </developer> </developers> <scm> <url>https://github.com/imrafaelmerino/mydsl-json.git</url> </scm> <properties> <JACKSON-VERSION>2.11.0</JACKSON-VERSION> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <PLUGIN_COMPILER_VERSION>3.8.0</PLUGIN_COMPILER_VERSION> <COMPILER_SOURCE_VERSION>8</COMPILER_SOURCE_VERSION> <COMPILER_TARGET_VERSION>8</COMPILER_TARGET_VERSION> <MAVEN-SOURCE-PLUGIN.VERSION>3.0.1</MAVEN-SOURCE-PLUGIN.VERSION> <MAVEN-GPG-PLUGIN.VERSION>1.6</MAVEN-GPG-PLUGIN.VERSION> <NEXUS-STAGING-MAVEN-PLUGIN.VERSION>1.6.8</NEXUS-STAGING-MAVEN-PLUGIN.VERSION> <MAVEN-JAVADOC-PLUGIN.VERSION>3.2.0</MAVEN-JAVADOC-PLUGIN.VERSION> <dsl-json.version>1.9.5</dsl-json.version> <vavr.version>0.10.3</vavr.version> </properties> <dependencies> <dependency> <groupId>com.dslplatform</groupId> <artifactId>dsl-json</artifactId> <version>${dsl-json.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${PLUGIN_COMPILER_VERSION}</version> <configuration> <encoding>UTF-8</encoding> <source>${COMPILER_SOURCE_VERSION}</source> <target>${COMPILER_TARGET_VERSION}</target> <showWarnings>true</showWarnings> <compilerArgs> <arg>-Xlint:all</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${MAVEN-JAVADOC-PLUGIN.VERSION}</version> <configuration> <source>8</source> <detectJavaApiLink>false</detectJavaApiLink> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>local</id> <activation> <activeByDefault>true</activeByDefault> </activation> <distributionManagement> <repository> <id>releases</id> <name>Repositorio de releases</name> <url>http://127.0.0.1:8081/repository/maven-releases/</url> </repository> <snapshotRepository> <id>snapshots</id> <name>Repositorio de snapshots</name> <url>http://127.0.0.1:8081/repository/maven-snapshots/</url> </snapshotRepository> </distributionManagement> </profile> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${NEXUS-STAGING-MAVEN-PLUGIN.VERSION}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${MAVEN-GPG-PLUGIN.VERSION}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${MAVEN-SOURCE-PLUGIN.VERSION}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>