json-merge-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>it.traeck.tools.json-merge</groupId> <artifactId>json-merge-maven-plugin</artifactId> <version>1.0.1</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <prerequisites> <maven>3.2.5</maven> </prerequisites> <parent> <groupId>it.traeck.tools.json-merge</groupId> <artifactId>json-merge-reactor</artifactId> <version>1.0.1</version> </parent> <artifactId>json-merge-maven-plugin</artifactId> <version>1.0.1</version> <name>TraeckIt :: Json Merge :: Maven Plugin</name> <packaging>maven-plugin</packaging> <description>maven plugin to merge several json or yaml files together.</description> <dependencies> <dependency> <groupId>it.traeck.tools.json-merge</groupId> <artifactId>json-merge</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> </dependency> <dependency> <groupId>javax.json</groupId> <artifactId>javax.json-api</artifactId> </dependency> <dependency> <groupId>org.glassfish</groupId> <artifactId>javax.json</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr353</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> </plugins> </build> </project>