middleware-mom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.alibaba.race</groupId> <artifactId>middleware-mom</artifactId> <version>1.0</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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.alibaba.race</groupId> <artifactId>middleware-mom</artifactId> <packaging>jar</packaging> <version>1.0</version> <name>middleware-mom</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!--maven properties --> <maven.test.skip>true</maven.test.skip> <!--hello--> <maven.jdoc.skip>false</maven.jdoc.skip> <downloadSources>true</downloadSources> <!-- compiler settings properties --> <java_source_version>1.6</java_source_version> <java_target_version>1.6</java_target_version> <file_encoding>UTF-8</file_encoding> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>${java_source_version}</source> <target>${java_target_version}</target> <encoding>${file_encoding}</encoding> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <finalName>rmq</finalName> <descriptors> <descriptor>release.xml</descriptor> </descriptors> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <skip>${maven.jdoc.skip}</skip> <encoding>${file_encoding}</encoding> <charset>${file_encoding}</charset> <doclet>org.jboss.apiviz.APIviz</doclet> <docletArtifact> <groupId>org.jboss.apiviz</groupId> <artifactId>apiviz</artifactId> <version>1.3.0.GA</version> </docletArtifact> <useStandardDocletOptions>true</useStandardDocletOptions> <breakiterator>true</breakiterator> <version>true</version> <author>true</author> <keywords>true</keywords> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <scm> <connection>git@gitlab.alibaba-inc.com:middleware-race/mom.git</connection> <developerConnection>scm:git:git@gitlab.alibaba-inc.com:middleware-race/mom.git</developerConnection> <url>scm:git:git@gitlab.alibaba-inc.com:middleware-race/mom.git</url> </scm> </project>