1 <?xml version="1.0" encoding="UTF-8"?> 2 <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"> 3 <modelVersion>4.0.0</modelVersion> 4 <parent> 5 <groupId>com.badlogicgames.gdx</groupId> 6 <artifactId>gdx-parent</artifactId> 7 <version>1.9.3</version> 8 <relativePath>../../pom.xml</relativePath> 9 </parent> 10 11 <artifactId>gdx-freetype</artifactId> 12 <packaging>jar</packaging> 13 <name>libGDX FreeType</name> 14 15 <dependencies> 16 <dependency> 17 <groupId>${project.groupId}</groupId> 18 <artifactId>gdx</artifactId> 19 <version>${project.version}</version> 20 </dependency> 21 <dependency> 22 <groupId>${project.groupId}</groupId> 23 <artifactId>gdx-jnigen</artifactId> 24 <version>${project.version}</version> 25 <optional>true</optional> 26 </dependency> 27 </dependencies> 28 29 <build> 30 <sourceDirectory>src</sourceDirectory> 31 32 <plugins> 33 <plugin> 34 <groupId>org.apache.maven.plugins</groupId> 35 <artifactId>maven-source-plugin</artifactId> 36 <executions> 37 <execution> 38 <id>attach-sources</id> 39 <phase>generate-resources</phase> 40 <goals> 41 <goal>jar-no-fork</goal> 42 </goals> 43 </execution> 44 </executions> 45 </plugin> 46 </plugins> 47 48 <resources> 49 <resource> 50 <directory>src</directory> 51 <includes> 52 <include>**/*</include> 53 </includes> 54 <excludes> 55 <exclude>**/*.java</exclude> 56 </excludes> 57 </resource> 58 </resources> 59 </build> 60 </project> 61