diff options
author | modmuss50 <modmuss50@gmail.com> | 2020-12-21 19:33:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-21 19:33:23 +0000 |
commit | 78c934aed58e28b2128ef8969d74110e8050fa84 (patch) | |
tree | 0800043017b2e13e8d4c8b685de459e86197bd63 /src/main/resources | |
parent | 3ab757363cb11807a3551d0f7396c4564d00bcc9 (diff) | |
download | architectury-loom-78c934aed58e28b2128ef8969d74110e8050fa84.tar.gz architectury-loom-78c934aed58e28b2128ef8969d74110e8050fa84.tar.bz2 architectury-loom-78c934aed58e28b2128ef8969d74110e8050fa84.zip |
Move remapped mods into a full local maven repo (#300)
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/mod_compile_template.pom | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/resources/mod_compile_template.pom b/src/main/resources/mod_compile_template.pom new file mode 100644 index 00000000..8ef63430 --- /dev/null +++ b/src/main/resources/mod_compile_template.pom @@ -0,0 +1,8 @@ +<?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>%GROUP%</groupId> + <artifactId>%NAME%</artifactId> + <version>%VERSION%</version> +</project> |