zenwave-code-generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.zenwave360.zenwave-code-generator</groupId> <artifactId>zenwave-code-generator</artifactId> <version>1.0.0.RC1</version> </dependency>
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <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> <groupId>io.github.zenwave360.zenwave-code-generator</groupId> <artifactId>zenwave-code-generator</artifactId> <version>1.0.0.RC1</version> <packaging>pom</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>Extensible code generation framework for JSON/YAML models and specifications.</description> <url>https://github.com/ZenWave360/zenwave-code-generator</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Ivan Garcia Sainz-Aja</name> <email>ivangsa@gmail.com</email> <organization>ZenWave360</organization> <organizationUrl>https://github.com/ZenWave360</organizationUrl> </developer> </developers> <distributionManagement> <repository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <scm> <connection>scm:git:git://github.com/ZenWave360/zenwave-code-generator.git</connection> <developerConnection>scm:git:git@github.com:ZenWave360/zenwave-code-generator.git</developerConnection> <url>https://github.com/ZenWave360/zenwave-code-generator</url> <tag>v1.0.0.RC1</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version> <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> <maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version> <maven-release-plugin.version>2.5.3</maven-release-plugin.version> <slf4j-api.version>1.7.36</slf4j-api.version> <picocli.version>4.6.3</picocli.version> <reflections.version>0.10.2</reflections.version> <handlebars-java.version>4.3.0</handlebars-java.version> <json-schema-ref-parser-jvm.version>0.8.1</json-schema-ref-parser-jvm.version> <jdl-jvm.version>0.5.2</jdl-jvm.version> <graphql-java.version>19.2</graphql-java.version> <google-java-format.version>1.7</google-java-format.version> <junit.version>4.13.2</junit.version> <spring-boot-dependencies.version>2.6.7</spring-boot-dependencies.version> <reflections.version>0.10.2</reflections.version> <junit.version>5.8.2</junit.version> <logcaptor.version>2.7.10</logcaptor.version> </properties> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j-api.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.hakky54</groupId> <artifactId>logcaptor</artifactId> <version>${logcaptor.version}</version> <scope>test</scope> </dependency> </dependencies> <modules> <module>zenwave-code-generator-test-resources</module> <module>zenwave-code-generator-cli</module> <module>plugins</module> <module>zenwave-code-generator-maven-plugin</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> <mavenExecutorId>forked-path</mavenExecutorId> <autoVersionSubmodules>true</autoVersionSubmodules> <tagNameFormat>v@{project.version}</tagNameFormat> <!-- <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>--> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.9.5</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <tags> <tag> <name>goal</name> <placement>a</placement> <head>Goal:</head> </tag> <tag> <name>phase</name> <placement>a</placement> <head>Phase:</head> </tag> <tag> <name>threadSafe</name> <placement>a</placement> <head>Thread Safe:</head> </tag> <tag> <name>requiresDependencyResolution</name> <placement>a</placement> <head>Requires Dependency Resolution:</head> </tag> <tag> <name>requiresProject</name> <placement>a</placement> <head>Requires Project:</head> </tag> </tags> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.7</version> <configuration> <excludes> <exclude>com/intuit/karate/core/**</exclude> <exclude>com/google/googlejavaformat/java/**</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <!-- attached to Maven test phase --> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.simplify4u.plugins</groupId> <artifactId>sign-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> <plugins> <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.0.2</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> <configuration> <systemPropertyVariables> <maven.home>${maven.home}</maven.home> </systemPropertyVariables> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.0.0</version> </plugin> </plugins> </pluginManagement> </build> </project>