gluon-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.zaradai</groupId> <artifactId>gluon-parent</artifactId> <version>0.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2017 Zaradai Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <prerequisites> <maven>3.0.1</maven> </prerequisites> <groupId>com.zaradai</groupId> <artifactId>gluon-parent</artifactId> <version>0.0.1</version> <packaging>pom</packaging> <name>Gluon Parent</name> <description>Gluon Project - Distributed micro services</description> <url>http://github.com/zaradai/gluon</url> <modules> <module>gluon-core</module> <module>gluon-exaples</module> </modules> <properties> <!-- Specify encoding for the projects files --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <javac.target>1.8</javac.target> <!-- version properties for application dependencies --> <logback.version>1.1.8</logback.version> <slf4j.version>1.7.21</slf4j.version> <guava.version>20.0</guava.version> <kafka.version>0.10.1.0</kafka.version> <fst.version>2.43</fst.version> <!-- version properties for testing dependencies --> <hamcrest.version>1.3</hamcrest.version> <junit.version>4.12</junit.version> <mockito.version>1.9.5</mockito.version> <matchers.version>0.2</matchers.version> <!-- version properties for plugins --> <compiler.plugin.version>3.6.1</compiler.plugin.version> <surefire.plugin.version>2.19.1</surefire.plugin.version> <source.plugin.version>3.0.1</source.plugin.version> <javadoc.plugin.version>2.10.4</javadoc.plugin.version> <findbugs.plugin.version>3.0.4</findbugs.plugin.version> <jacoco-plugin-version>0.7.8</jacoco-plugin-version> <release-plugin-version>2.5</release-plugin-version> <gpg-plugin-version>1.5</gpg-plugin-version> </properties> <organization> <name>Zaradai</name> <url>https://github.com/zaradai</url> </organization> <developers> <developer> <id>Zaradai</id> <name>Stephen Hough</name> <email>stephen_c_hough@hotmail.com</email> <organization>Zaradai</organization> <organizationUrl>https://github.com/zaradai</organizationUrl> <timezone>Asia/Singapore</timezone> <roles> <role>developer</role> </roles> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <scm> <connection>scm:git:git://github.com/zaradai/gluon.git</connection> <developerConnection>scm:git:git@github.com:zaradi/gluon.git</developerConnection> <url>https://github.com/zaradai/gluon/</url> </scm> <issueManagement> <url>https://github.com/zaradai/gluon/issues</url> <system>github</system> </issueManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencyManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> <version>${kafka.version}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>de.ruedigermoeller</groupId> <artifactId>fst</artifactId> <version>${fst.version}</version> </dependency> <!-- Test --> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.zaradai</groupId> <artifactId>matchers</artifactId> <version>${matchers.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${compiler.plugin.version}</version> <configuration> <source>${javac.target}</source> <target>${javac.target}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire.plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>${findbugs.plugin.version}</version> <configuration> <effort>Max</effort> <threshold>Default</threshold> <xmlOutput>true</xmlOutput> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-plugin-version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</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://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!--<plugin>--> <!--<groupId>org.apache.maven.plugins</groupId>--> <!--<artifactId>maven-release-plugin</artifactId>--> <!--<version>${release-plugin-version}</version>--> <!--<configuration>--> <!--<autoVersionSubmodules>true</autoVersionSubmodules>--> <!--<useReleaseProfile>false</useReleaseProfile>--> <!--<!– references the profile defined just below –>--> <!--<releaseProfiles>release</releaseProfiles>--> <!--<goals>deploy</goals>--> <!--</configuration>--> <!--</plugin>--> </plugins> </build> <profiles> <!-- all plugins below are usually only required for release builds --> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${source.plugin.version}</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>${javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg-plugin-version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>