diff options
author | modmuss50 <modmuss50@gmail.com> | 2021-07-16 22:59:37 +0100 |
---|---|---|
committer | modmuss50 <modmuss50@gmail.com> | 2021-07-16 22:59:37 +0100 |
commit | d271dfadd07c6815be8a233aaf4c94b874206e7a (patch) | |
tree | 881b48128165a76ee2a3ef03210cd0466c577eba /src/test/resources/projects/minimalBase/build.gradle | |
parent | 34b771f7447b181c27f7127ec77fda6eb465111a (diff) | |
download | architectury-loom-d271dfadd07c6815be8a233aaf4c94b874206e7a.tar.gz architectury-loom-d271dfadd07c6815be8a233aaf4c94b874206e7a.tar.bz2 architectury-loom-d271dfadd07c6815be8a233aaf4c94b874206e7a.zip |
Add CustomManifestTest
Diffstat (limited to 'src/test/resources/projects/minimalBase/build.gradle')
-rw-r--r-- | src/test/resources/projects/minimalBase/build.gradle | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/resources/projects/minimalBase/build.gradle b/src/test/resources/projects/minimalBase/build.gradle new file mode 100644 index 00000000..8fbea237 --- /dev/null +++ b/src/test/resources/projects/minimalBase/build.gradle @@ -0,0 +1,10 @@ +// This is used by a range of tests that append to this file before running the gradle tasks. +// Can be used for tests that require minimal custom setup +plugins { + id 'fabric-loom' + id 'maven-publish' +} + +archivesBaseName = "fabric-example-mod" +version = "1.0.0" +group = "com.example"
\ No newline at end of file |