processor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.kie.j2cl.tools.json.mapper</groupId>
<artifactId>processor</artifactId>
<version>0.7</version>
</dependency><?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/maven-v4_0_0.xsd">
<parent>
<artifactId>mapper-parent</artifactId>
<groupId>org.kie.j2cl.tools.json.mapper</groupId>
<version>0.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>processor</artifactId>
<name>GWT/J2CL Jakarta JSON Binding processor</name>
<description>GWT/J2CL Jakarta JSON Binding processor</description>
<url>https://github.com/kiegroup/j2cl-tools</url>
<developers>
<developer>
<name>All developers are listed in the KIE GitHub organization</name>
<url>https://github.com/orgs/kiegroup/people</url>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/kiegroup/j2cl-tools.git</connection>
<developerConnection>scm:git:ssh://github.com/kiegroup/j2cl-tools.git</developerConnection>
<url>https://github.com/kiegroup/j2cl-tools/tree/master</url>
</scm>
<organization>
<name>JBoss by Red Hat</name>
<url>http://www.jboss.org/</url>
</organization>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<filters>
<filter>
<artifact>*:*:*:*</artifact>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>