META-INF.maven.io.github.wybosys.dubbo-compiler.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dubbo-compiler Show documentation
Show all versions of dubbo-compiler Show documentation
Dubbo customized RPC stub compiler.
The newest version!
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.wybosys</groupId> <artifactId>dubbo-compiler</artifactId> <name>dubbo-compiler</name> <version>0.0.1</version> <description>Dubbo customized RPC stub compiler.</description> <url>https://github.com/apache/dubbo</url> <issueManagement> <system>Github Issues</system> <url>https://github.com/apache/dubbo/issues</url> </issueManagement> <inceptionYear>2011</inceptionYear> <mailingLists> <mailingList> <name>Development List</name> <subscribe>[email protected]</subscribe> <unsubscribe>[email protected]</unsubscribe> <post>[email protected]</post> </mailingList> <mailingList> <name>Commits List</name> <subscribe>[email protected]</subscribe> <unsubscribe>[email protected]</unsubscribe> <post>[email protected]</post> </mailingList> <mailingList> <name>Issues List</name> <subscribe>[email protected]</subscribe> <unsubscribe>[email protected]</unsubscribe> <post>[email protected]</post> </mailingList> </mailingLists> <developers> <developer> <id>dubbo.io</id> <name>The Dubbo Project Contributors</name> <email>[email protected]</email> <url>http://dubbo.apache.org/</url> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/apache/dubbo.git</connection> <developerConnection>scm:git:https://github.com/apache/dubbo.git</developerConnection> <url>https://github.com/apache/dubbo</url> </scm> <organization> <name>The Apache Software Foundation</name> <url>http://www.apache.org/</url> </organization> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven_compiler_version}</version> <configuration> <compilerArgument>-proc:none</compilerArgument> <fork>true</fork> <source>${java_source_version}</source> <target>${java_target_version}</target> <encoding>${file_encoding}</encoding> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven_jar_version}</version> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>org.apache.dubbo.gen.grpc.DubboGrpcGenerator</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.salesforce.servicelibs</groupId> <artifactId>canteen-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <goals> <goal>bootstrap</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> <goal>aggregate</goal> </goals> <configuration> <additionalDependencies> <additionalDependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.11.1</version> </additionalDependency> <additionalDependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.11.1</version> </additionalDependency> </additionalDependencies> <show>public</show> <charset>UTF-8</charset> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <links> <link>http://docs.oracle.com/javase/8/docs/api</link> </links> <doclint>none</doclint> <excludePackageNames>org.apache.dubbo.demo,org.apache.dubbo.demo.*</excludePackageNames> <doctitle>Apache Dubbo 0.0.1 API</doctitle> <windowtitle>Apache Dubbo 0.0.1 API</windowtitle> </configuration> </execution> </executions> <configuration> <show>public</show> <charset>UTF-8</charset> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <links> <link>http://docs.oracle.com/javase/8/docs/api</link> </links> <doclint>none</doclint> <excludePackageNames>org.apache.dubbo.demo,org.apache.dubbo.demo.*</excludePackageNames> <doctitle>Apache Dubbo 0.0.1 API</doctitle> <windowtitle>Apache Dubbo 0.0.1 API</windowtitle> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <properties> <log4j2_version>2.11.1</log4j2_version> </properties> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <maven_source_version>3.0.1</maven_source_version> <maven_compiler_version>3.6.0</maven_compiler_version> <maven_javadoc_version>3.0.1</maven_javadoc_version> <java_target_version>1.8</java_target_version> <java_source_version>1.8</java_source_version> <maven_jar_version>3.0.2</maven_jar_version> <file_encoding>UTF-8</file_encoding> </properties> </project>