jeoparnaire
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.openbase</groupId> <artifactId>jeoparnaire</artifactId> <version>1.0.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.openbase</groupId> <artifactId>jeoparnaire</artifactId> <name>Jeoparnaire</name> <version>1.0.2</version> <description>An opensource network voting game based on the idea of jeopardy and who wants to be a millionaire.</description> <url>https://github.com/openbase/jeoparnaire/wiki</url> <inceptionYear>2011</inceptionYear> <developers> <developer> <id>DivineThreepwood</id> <name>Marian Pohling</name> <email>divinethreepwood@gmail.com</email> <url>https://github.com/DivineThreepwood</url> <organization>openbase.org</organization> <organizationUrl>https://github.com/openbase</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <licenses> <license> <name>GPLv3</name> <url>http://www.gnu.org/licenses/gpl.html</url> </license> </licenses> <scm> <connection>scm:git:https://github.com/openbase/jeoparnaire.git</connection> <developerConnection>scm:git:https://github.com/openbase/jeoparnaire.git</developerConnection> <url>https://github.com/openbase/jeoparnaire.git</url> </scm> <organization> <name>openbase.org</name> <url>https://github.com/openbase</url> </organization> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>appassembler-maven-plugin</artifactId> <version>2.0.0</version> <executions> <execution> <phase>install</phase> <goals> <goal>assemble</goal> </goals> </execution> </executions> <configuration> <programs> <program> <mainClass>${app.mainclass.server}</mainClass> <id>jeoparnaire</id> <platforms> <platform>all</platform> </platforms> </program> <program> <mainClass>${app.mainclass.client}</mainClass> <id>jeoparnaire-client</id> <platforms> <platform>all</platform> </platforms> </program> </programs> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.6.0</version> <configuration> <executable>java</executable> <arguments> <argument>-classpath</argument> <classpath /> <argument>${app.mainclass.server}</argument> </arguments> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>build-first</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer> <mainClass>${app.mainclass.server}</mainClass> </transformer> </transformers> <finalName>jeoparnaire-${project.version}</finalName> <dependencyReducedPomLocation>${basedir}/target/dependency-reduced-pom.xml</dependencyReducedPomLocation> </configuration> </execution> <execution> <id>build-second</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer> <mainClass>${app.mainclass.client}</mainClass> </transformer> </transformers> <finalName>jeoparnaire-client-${project.version}</finalName> <dependencyReducedPomLocation>${basedir}/target/dependency-reduced-pom.xml</dependencyReducedPomLocation> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.14</version> <executions> <execution> <id>first</id> <phase>process-sources</phase> <goals> <goal>update-file-header</goal> </goals> </execution> <execution> <id>download-licenses</id> <goals> <goal>download-licenses</goal> </goals> </execution> </executions> <configuration> <verbose>false</verbose> <licenseName>gpl_v3</licenseName> <failOnMissingHeader>true</failOnMissingHeader> <failOnNotUptodateHeader>true</failOnNotUptodateHeader> <canUpdateCopyright>true</canUpdateCopyright> <canUpdateDescription>true</canUpdateDescription> <canUpdateLicense>true</canUpdateLicense> <roots> <root>src/main/java</root> <root>src/test</root> </roots> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>deploy</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>sonatype</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <executions> <execution> <id>injected-nexus-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </execution> </executions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <pluginRepositories> <pluginRepository> <id>onejar-maven-plugin.googlecode.com</id> <url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url> </pluginRepository> </pluginRepositories> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <app.mainclass.server>org.openbase.jeoparnaire.Jeoparnaire</app.mainclass.server> <skipTests>false</skipTests> <app.mainclass.client>org.openbase.jeoparnaire.JeoparnaireClient</app.mainclass.client> <dependency.jul.version>[1.6,1.7-alpha)</dependency.jul.version> <maven.compiler.source>1.8</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.target>1.8</maven.compiler.target> </properties> </project>