reploop-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.reploop</groupId>
<artifactId>reploop-parser</artifactId>
<version>0.20</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.reploop</groupId>
<artifactId>reploop-bom</artifactId>
<version>0.0.3</version>
<relativePath/>
</parent>
<artifactId>reploop-parser</artifactId>
<version>0.20</version>
<packaging>pom</packaging>
<modules>
<module>json2-standalone</module>
<module>thrift-parser</module>
<module>protobuf-parser</module>
<module>parser-commons</module>
<module>json-parser</module>
<module>java-parser</module>
<module>mysql-parser</module>
<module>json2-translator</module>
<module>go-parser</module>
<module>json2-maven-plugin</module>
<module>json2-web</module>
</modules>
<profiles>
<profile>
<id>dev</id>
<properties>
<environment.type>dev</environment.type>
</properties>
</profile>
<profile>
<id>test</id>
<properties>
<environment.type>test</environment.type>
</properties>
</profile>
<profile>
<id>prod</id>
<properties>
<environment.type>prod</environment.type>
</properties>
</profile>
</profiles>
<scm>
<url>https://github.com/georgecao/reploop-parser</url>
<connection>scm:git:https://github.com/georgecao/reploop-parser.git</connection>
<developerConnection>scm:git:ssh://git@github.com/georgecao/reploop-parser.git
</developerConnection>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.plugin.version}</version>
<configuration>
<skipTests>${skipTests}</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>${antlr4.version}</version>
<executions>
<execution>
<goals>
<goal>antlr4</goal>
</goals>
</execution>
</executions>
<configuration>
<visitor>true</visitor>
<outputDirectory>${project.build.sourceDirectory}</outputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${versions.plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${enforcer.plugin.version}</version>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.6.3</version>
</requireMavenVersion>
<requireJavaVersion>
<version>${java.version}</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>