Jamepad
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.xenoamess</groupId> <artifactId>Jamepad</artifactId> <version>1.3.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.xenoamess</groupId> <artifactId>Jamepad</artifactId> <version>1.3.2</version> <packaging>jar</packaging> <name>Jamepad</name> <description>A better way to use gamepads in Java</description> <url>https://github.com/williamahartman/Jamepad/ </url> <licenses> <license> <name>zlib License</name> <url>${project.url}/blob/master/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>William Hartman</name> <email>william.a.hartman@gmail.com</email> <url>https://github.com/williamahartman</url> </developer> <developer> <name>electronstudio</name> <email>misc@electronstudio.co.uk</email> <url>https://github.com/electronstudio</url> </developer> </developers> <scm> <connection>scm:git:${project.url}.git</connection> <developerConnection>${project.scm.connection}</developerConnection> <url>${project.url}</url> <tag>${project.version}</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8 </project.reporting.outputEncoding> <maven.compiler.encoding>UTF-8</maven.compiler.encoding> <java.version>8</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> </properties> <repositories> <repository> <id>central</id> <url>http://central.maven.org/maven2/</url> </repository> </repositories> <profiles> <profile> <id>ossrh</id> <!-- GPG mvn clean deploy -P release -Dgpg.passphrase=YourPassphase --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <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> </profiles> <build> <plugins> <plugin> <inherited>true</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.1.0</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>3.1.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.badlogicgames.gdx</groupId> <artifactId>gdx-jnigen</artifactId> <version>1.9.9</version> <scope>compile</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <name>OSS Snapshots Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>ossrh</id> <name>OSS Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/ </url> </repository> </distributionManagement> </project>