minecraft-modpack-almond
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.rremer</groupId> <artifactId>minecraft-modpack-almond</artifactId> <version>20w14a-1</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.rremer</groupId> <artifactId>maven-parent</artifactId> <version>1.0.2</version> </parent> <groupId>com.github.rremer</groupId> <artifactId>minecraft-modpack-almond</artifactId> <version>20w14a-1</version> <packaging>pom</packaging> <name>Minecraft Modpack Almond</name> <description>A Fabric/datapack vanilla-substitute of Minecraft</description> <modules> <module>server</module> <module>client</module> <module>datapack</module> <module>image</module> </modules> <properties> <github.project>${project.artifactId}</github.project> <github.site.location>${project.version}</github.site.location> <github.site.url>https://${github.owner}.github.io/${github.project}</github.site.url> <parameter.disable.semantic.versioning>true</parameter.disable.semantic.versioning> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <scm.url>https://github.com/${github.owner}/${github.project}</scm.url> <url.fabric.installer>https://maven.fabricmc.net/net/fabricmc/fabric-installer/${version.fabric.installer}/fabric-installer-${version.fabric.installer}.jar</url.fabric.installer> <url.fabric.installerName>fabric-installer.jar</url.fabric.installerName> <url.mods.target>${project.build.directory}/mods</url.mods.target> <version.download-maven-plugin>1.5.0</version.download-maven-plugin> <version.exec-maven-plugin>1.6.0</version.exec-maven-plugin> <version.fabric.installer>0.5.2.39</version.fabric.installer> <version.fabric.loader>0.7.8+build.187</version.fabric.loader> <version.minecraft>20w14a</version.minecraft> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <version>${version.download-maven-plugin}</version> <executions> <execution> <id>fabric-installer</id> <goals> <goal>wget</goal> </goals> <phase>none</phase> <configuration> <url>${url.fabric.installer}</url> <outputDirectory>${url.installer.target}</outputDirectory> <outputFileName>${url.fabric.installerName}</outputFileName> </configuration> </execution> <execution> <id>fabric-api</id> <goals> <goal>wget</goal> </goals> <phase>none</phase> <configuration> <url>https://media.forgecdn.net/files/2919/465/fabric-api-0.5.7%2Bbuild.314-1.16.jar</url> <outputDirectory>${url.mods.target}</outputDirectory> </configuration> </execution> <execution> <id>rei</id> <goals> <goal>wget</goal> </goals> <phase>none</phase> <configuration> <url>https://media.forgecdn.net/files/2921/618/RoughlyEnoughItems-4.1.5-unstable.jar</url> <outputDirectory>${url.mods.target}</outputDirectory> </configuration> </execution> <execution> <id>carpet</id> <goals> <goal>wget</goal> </goals> <phase>none</phase> <configuration> <url>https://media.forgecdn.net/files/2922/345/fabric-carpet-20w14a-1.3.17%2Bv200401.jar</url> <outputDirectory>${url.mods.target}</outputDirectory> </configuration> </execution> <execution> <id>carpet-extra</id> <goals> <goal>wget</goal> </goals> <phase>none</phase> <configuration> <url>https://media.forgecdn.net/files/2922/347/carpet-extra-20w14a-1.3.17.jar</url> <outputDirectory>${url.mods.target}</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${version.exec-maven-plugin}</version> <executions> <execution> <id>fabric-installer</id> <goals> <goal>exec</goal> </goals> <phase>none</phase> <configuration> <executable>java</executable> <workingDirectory>${url.installer.target}</workingDirectory> <environmentVariables></environmentVariables> <arguments> <argument>-jar</argument> <argument>${url.fabric.installerName}</argument> <argument>${parameter.fabric.installer.mode}</argument> <argument>-dir</argument> <argument>${url.installer.target}</argument> <argument>-downloadMinecraft</argument> <argument>-snapshot</argument> <argument>-mcversion</argument> <argument>${version.minecraft}</argument> <argument>-noprofile</argument> <argument>-loader</argument> <argument>${version.fabric.loader}</argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <url>${github.site.url}/${github.site.location}</url> <organization> <name>Royce Remer</name> <url>https://github.com/rremer/</url> </organization> <developers> <developer> <id>rremer</id> <email>royceremer@gmail.com</email> <timezone>America/Los_Angeles</timezone> </developer> </developers> <scm> <connection>scm:git:git:${scm.url}.git</connection> <developerConnection>scm:git:git:${scm.url}.git</developerConnection> <url>${scm.url}</url> </scm> <issueManagement> <system>Github Issues</system> <url>${scm.url}/issues</url> </issueManagement> <ciManagement> <system>travis</system> <url>https://travis-ci.org/rremer/minecraft-modpack-almond</url> </ciManagement> </project>