diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..412eeda --- /dev/null +++ b/.gitattributes @@ -0,0 +1,22 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# Custom for Visual Studio +*.cs diff=csharp +*.sln merge=union +*.csproj merge=union +*.vbproj merge=union +*.fsproj merge=union +*.dbproj merge=union + +# Standard to msysgit +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..3986873 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,24 @@ +Hey there. Looks like you want to contribute with an issue. Great. Here's what you have to do: +* Have a look through the [Issue Tracker](https://github.com/UndeadZeratul/SystemicSurvival/issues), to see if your issue has been solved already; +* Read through the steps on [Bug Reporting 101](http://vazkii.us/br101/) (You may skip this if you're already familiar with reporting issues, but it's good for newcomers); + +* Note the following points: + * When reporting an issue, please include the version of the modpack (can be found on the title screen), which launcher you are using, and a link to pastebin with any crash report you have received. + * Issues regarding outdated versions of the modpack are **not accepted**; + * Duplicate issues or issues that have been solved already (use the search feature!) will be closed without asking. + * Do not tag your issues' names. "Something Broke" is prefered to "[Bug] Something Broke" because there's a proper label system in place. + * If you are going to post a suggestion, post one, not a wish list; it’s easier to track and manage that way. + +The following "bugs" are not accepted: +* Not a Systemic Survival problem/Not fixable + * Crash on startup with any mod that isn’t [in this list](https://github.com/UndeadZeratul/SystemicSurvival/blob/master/Versions.md) + +--- + +If you want to make a Pull Request keep these in mind: +* Do not use the github editor. Test your PRs before you submit them. +* Unless you have a very good reason for it, keep your PRs all in one commit. You can do it with [rebase](https://git-scm.com/docs/git-rebase). + +--- + +Thanks to Vazkii for the contributing guidelines. 8/8 gr8 job m8 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bd0ab75 --- /dev/null +++ b/.gitignore @@ -0,0 +1,249 @@ +################# +## Custom +################# +mods/ +target/ +asm/ +cache/ +crash-reports/ +dumps/ +hats/ +journeyMap/ +logs/ +reports/ +saves/ +screenshots/ + +*/config/fastcraft* +*/config/mapwriter* +*/config/opis* +*/config/versionchecker* +**/loaders/*.jar +**/mods/*.jar +modpackdownloader*.jar + +*.lck +*.rar +1213309934 +icon.png +nicknames.json +options.txt +optionsshaders.txt +usercache.json +usernamecache.json +optionsof.txt + +################# +## IntelliJ IDEA +################# +*.iml +.idea + +################# +## Eclipse +################# + +*.pydevproject +.project +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.classpath +.settings/ +.loadpath + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# CDT-specific +.cproject + +# PDT-specific +.buildpath + + +################# +## Visual Studio +################# + +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.sln.docstates + +# Build results + +[Dd]ebug/ +[Rr]elease/ +x64/ +build/ +[Bb]in/ +[Oo]bj/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +*_i.c +*_p.c +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.log +*.scc + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf +*.cachefile + +# Visual Studio profiler +*.psess +*.vsp +*.vspx + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +*.ncrunch* +.*crunch*.local.xml + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.Publish.xml +*.pubxml + +# NuGet Packages Directory +## TODO: If you have NuGet Package Restore enabled, uncomment the next line +#packages/ + +# Windows Azure Build Output +csx +*.build.csdef + +# Windows Store app package directory +AppPackages/ + +# Others +sql/ +*.Cache +ClientBin/ +[Ss]tyle[Cc]op.* +~$* +*~ +*.dbmdl +*.[Pp]ublish.xml +*.pfx +*.publishsettings + +# RIA/Silverlight projects +Generated_Code/ + +# SQL Server files +App_Data/*.mdf +App_Data/*.ldf + +############# +## Windows detritus +############# + +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Mac crap +.DS_Store + + +############# +## Python +############# + +*.py[co] + +# Packages +*.egg +*.egg-info +dist/ +build/ +eggs/ +parts/ +var/ +sdist/ +develop-eggs/ +.installed.cfg + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage +.tox + +#Translations +*.mo + +#Mr Developer +.mr.developer.cfg diff --git a/.mvn/wrapper/maven-wrapper.jar b/.mvn/wrapper/maven-wrapper.jar new file mode 100644 index 0000000..9cc84ea Binary files /dev/null and b/.mvn/wrapper/maven-wrapper.jar differ diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..56bb016 --- /dev/null +++ b/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1 @@ +distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.0/apache-maven-3.5.0-bin.zip \ No newline at end of file diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..3012017 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,52 @@ +pipeline { + agent any + stages { + stage('Clean Workspace') { + steps { + fileOperations([fileDeleteOperation(excludes: '', includes: 'ModpackDownloader*.jar')]) + fileOperations([fileDeleteOperation(excludes: '', includes: '*/mods/*.jar')]) + } + } + stage('Copy Modpack Downloader') { + steps { + copyArtifacts filter: 'modpackdownloader-cli/target/*.jar', projectName: 'Mod Pack Downloader', selector: lastSuccessful() + } + } + stage('Download Mods') { + steps { + step('Download Common Mods') { + bat '''for /f "delims=" %%i IN (\'dir *.jar /b\') DO set modpackdownloader=%%i + java -jar "%modpackdownloader%" -manifest common/dev/mods.json -folder common/dev/mods + java -jar "%modpackdownloader%" -manifest common/base/mods.json -folder common/base/mods''' + } + step('Download Client Mods') { + bat '''for /f "delims=" %%i IN (\'dir *.jar /b\') DO set modpackdownloader=%%i + java -jar "%modpackdownloader%" -manifest client/base/mods.json -folder client/base/mods''' + } + step('Download Server Mods') { + bat '''for /f "delims=" %%i IN (\'dir *.jar /b\') DO set modpackdownloader=%%i + java -jar "%modpackdownloader%" -manifest server/base/mods.json -folder server/base/mods''' + } + } + } + stage('Build Modpack') { + steps { + script { + if(env.BRANCH_NAME.contains("release") || env.BRANCH_NAME.contains("master")) { + profileName = "master" + } + else { + profileName = "develop" + } + + bat '''mvnw.cmd clean package -D profile.${profileName} -Dbuild.number=${env.BUILD_NUMBER}''' + } + } + } + stage('Archive Artifacts') { + steps { + archiveArtifacts 'target/*.zip,launcher/**/modpack.json,launcher/**/src/mods/*.json' + } + } + } +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..65c5ca8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. diff --git a/README.md b/README.md new file mode 100644 index 0000000..0da7b58 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +Systemic Survival +================= + +A public repository for all changes to my Low-tech, immersive survival modpack. This modpack is still heavily a work in progress. + +Mod List +======== +[Current Mod List](https://github.com/UndeadZeratul/SystemicSurvival/blob/master/Versions.md): WIP + +Modpack Requirements +==================== +Systemic Survival requires Java 8, and runs well with 4GBs of RAM. If you can achieve a decent performance with more/less, let me know and I'll adjust. + +Installation +============ +This modpack is currently hosted on the Nincraft Launcher, with plans to publish it to the Twitch Launcher as well. +- For the Nincraft Launcher, you'll first have to download the latest version [here](https://github.com/Nincraft/Nincraft-Launcher/releases). Run the launcher and click the modpack called "Systemic Survival", and click "Launch". + +Contributing +============ +I love getting outside contributions, however doing so can be a little complex for some. + +First a note: If you are going to contribute, please make your contributions to the ___develop___ branch. + +Also, if you are just planning on making a one-line change, or anything that just alters one file, you can simply find the file and press "edit", and github will do the rest. + +To make any larger contributions, it is recommended to have [Github for Windows/Mac/Linux](https://help.github.com/articles/set-up-git) installed (use the orange button for the application, or the rest of the article for command line git). + +To do so you will need to make what is called a "fork" of this repository. To do this press the "Fork" button on the top right of the page, and github will create your own copy of this repository. Once that has completed, use the github application to "clone" this repository, [Github Help](http://help.github.com) can help you with this portion. Make the changes on your computer, then commit and push those back to your fork (again, refer to the github help documents). + +Once your fork has all the changes you want, you need to create a "pull request" on the main repository. To do this, go to the pull request tab on the right, and hit "new pull request". At the top of that screen hit "compare across forks", then choose the second dropdown on the first line to be "develop", the first dropdown on the second line to be _your_ fork, and the final dropdown to be "develop" again (This may require hitting "compare across forks" and "edit" quite a few times to get it right). If everything looks right, meaning you see all your commits on the screen, hit "Create pull request" and I will review it as soon as possible. + +Thank you for your help! diff --git a/Versions.md b/Versions.md new file mode 100644 index 0000000..97e6bc9 --- /dev/null +++ b/Versions.md @@ -0,0 +1,15 @@ +Current Forge Version += +- WIP + +Current API Versions += +- WIP + +Current Mod Versions += +- WIP + +Optional Client Mod Versions += +- WIP diff --git a/client/base/mods.json b/client/base/mods.json new file mode 100644 index 0000000..e69de29 diff --git a/client/dev/mods.json b/client/dev/mods.json new file mode 100644 index 0000000..e69de29 diff --git a/client/prod/mods.json b/client/prod/mods.json new file mode 100644 index 0000000..e69de29 diff --git a/common/base/mods.json b/common/base/mods.json new file mode 100644 index 0000000..c46776d --- /dev/null +++ b/common/base/mods.json @@ -0,0 +1,528 @@ +{ + "minecraft": { + "version": "1.12.2", + "modLoaders": [ + { + "id": "forge-14.23.2.2611", + "primary": true, + "downloadInstaller": true, + "downloadUniversal": true, + "renameUniversal": "modpack.jar", + "name": "forge", + "folder": "common/base/loaders" + } + ] + }, + "files": [ + { + "fileID": 2520541, + "projectID": 255308, + "name": "aether-legacy" + }, + { + "fileID": 2537268, + "projectID": 225635, + "name": "agricraft", + "skipDownload": true + }, + { + "fileID": 2486523, + "projectID": 275300, + "name": "albedo" + }, + { + "fileID": 2532174, + "projectID": 227795, + "name": "antique-atlas" + }, + { + "fileID": 2530884, + "projectID": 224472, + "name": "applecore" + }, + { + "fileID": 2496585, + "projectID": 248787, + "name": "appleskin" + }, + { + "fileID": 2510606, + "projectID": 238534, + "name": "armor-chroma" + }, + { + "fileID": 2497562, + "projectID": 250363, + "name": "autoreglib" + }, + { + "fileID": 2532663, + "projectID": 282963, + "name": "bed-patch" + }, + { + "fileID": 2478147, + "projectID": 228529, + "name": "better-foliage" + }, + { + "fileID": 2481852, + "projectID": 278406, + "name": "better-placement" + }, + { + "fileID": 2483393, + "projectID": 229876, + "name": "betterfps" + }, + { + "fileID": 2537006, + "projectID": 220318, + "name": "biomes-o-plenty" + }, + { + "fileID": 2460821, + "projectID": 268324, + "name": "blur" + }, + { + "fileID": 2520532, + "projectID": 269167, + "name": "bottled-milk" + }, + { + "fileID": 2481938, + "projectID": 224713, + "name": "bow-infinity-fix" + }, + { + "fileID": 2509995, + "projectID": 244447, + "name": "camouflaged-creepers", + "skipDownload": true + }, + { + "fileID": 2489278, + "projectID": 250617, + "name": "ceramics" + }, + { + "fileID": 2534808, + "projectID": 287664, + "name": "charset-crafting" + }, + { + "fileID": 2536968, + "projectID": 284523, + "name": "charset-lib" + }, + { + "fileID": 2536970, + "projectID": 285363, + "name": "charset-tweaks" + }, + { + "fileID": 2513671, + "projectID": 271384, + "name": "cofh-world" + }, + { + "fileID": 2519297, + "projectID": 69162, + "name": "cofhcore" + }, + { + "fileID": 2534172, + "projectID": 276951, + "name": "comforts" + }, + { + "fileID": 2511880, + "projectID": 253729, + "name": "compatlayer", + "skipDownload": true + }, + { + "fileID": 2525823, + "projectID": 222908, + "name": "cookiecore" + }, + { + "fileID": 2515876, + "projectID": 237749, + "name": "coroutil" + }, + { + "fileID": 2504229, + "projectID": 271605, + "name": "corpse-complex" + }, + { + "fileID": 2535188, + "projectID": 239197, + "name": "crafttweaker" + }, + { + "fileID": 2482584, + "projectID": 226406, + "name": "custom-main-menu" + }, + { + "fileID": 2499419, + "projectID": 273502, + "name": "defiled-lands" + }, + { + "fileID": 2480877, + "projectID": 272835, + "name": "dooglamoo-worlds" + }, + { + "fileID": 2529840, + "projectID": 240968, + "name": "drcyanos-lootable-bodies" + }, + { + "fileID": 2536945, + "projectID": 238891, + "name": "dynamic-surroundings" + }, + { + "fileID": 2527239, + "projectID": 252818, + "name": "dynamictrees" + }, + { + "fileID": 2491100, + "projectID": 255389, + "name": "enhancedvisuals" + }, + { + "fileID": 2504072, + "projectID": 267557, + "name": "erosion" + }, + { + "fileID": 2510173, + "projectID": 283390, + "name": "eternal-sleep", + "skipDownload": true + }, + { + "fileID": 2530257, + "projectID": 254441, + "name": "fancy-block-particles" + }, + { + "fileID": 2522170, + "projectID": 256909, + "name": "felling" + }, + { + "fileID": 2499443, + "projectID": 225957, + "name": "hardcore-darkness" + }, + { + "fileID": 2454832, + "projectID": 72210, + "name": "hopper-ducts" + }, + { + "fileID": 2536711, + "projectID": 227706, + "name": "horizontal-glass-panes" + }, + { + "fileID": 2534914, + "projectID": 283807, + "name": "ignition-foundry" + }, + { + "fileID": 2508712, + "projectID": 265751, + "name": "improved-extraction" + }, + { + "fileID": 2537265, + "projectID": 251396, + "name": "infinitylib" + }, + { + "fileID": 2529667, + "projectID": 284007, + "name": "inspirations" + }, + { + "fileID": 2536307, + "projectID": 238222, + "name": "jei" + }, + { + "fileID": 2448283, + "projectID": 235261, + "name": "just-a-few-fish" + }, + { + "fileID": 2448283, + "projectID": 235261, + "name": "just-a-few-fish" + }, + { + "fileID": 2500678, + "projectID": 240630, + "name": "just-enough-resources-jer" + }, + { + "fileID": 2526155, + "projectID": 284745, + "name": "magic-feather" + }, + { + "fileID": 2474052, + "projectID": 74924, + "name": "mantle" + }, + { + "fileID": 2535637, + "projectID": 233105, + "name": "mcjtylib" + }, + { + "fileID": 2536526, + "projectID": 270871, + "name": "millenaire" + }, + { + "fileID": 2535833, + "projectID": 264706, + "name": "minecart-ai-fix" + }, + { + "fileID": 2531342, + "projectID": 220954, + "name": "modtweaker" + }, + { + "fileID": 2531404, + "projectID": 244940, + "name": "mputils" + }, + { + "fileID": 2531406, + "projectID": 245889, + "name": "mputils-basic-tools" + }, + { + "fileID": 2531339, + "projectID": 253211, + "name": "mtlib" + }, + { + "fileID": 2494327, + "projectID": 258713, + "name": "mtnga" + }, + { + "fileID": 2519727, + "projectID": 282745, + "name": "natural-nether-portals" + }, + { + "fileID": 2496631, + "projectID": 268888, + "name": "nether-chest" + }, + { + "fileID": 2519723, + "projectID": 278084, + "name": "nether-gold-ore" + }, + { + "fileID": 2520136, + "projectID": 250359, + "name": "netherbound" + }, + { + "fileID": 2506216, + "projectID": 248039, + "name": "netherex" + }, + { + "fileID": 2525179, + "projectID": 250898, + "name": "ore-excavation" + }, + { + "fileID": 2536099, + "projectID": 289240, + "name": "paragliders" + }, + { + "fileID": 2536980, + "projectID": 283644, + "name": "placebo" + }, + { + "fileID": 2537291, + "projectID": 247907, + "name": "primalcore" + }, + { + "fileID": 2534684, + "projectID": 282415, + "name": "primitive-mobs" + }, + { + "fileID": 2525145, + "projectID": 261220, + "name": "pumpkin-carving" + }, + { + "fileID": 2523813, + "projectID": 243121, + "name": "quark" + }, + { + "fileID": 2491161, + "projectID": 237701, + "name": "reauth" + }, + { + "fileID": 2448933, + "projectID": 270789, + "name": "redstone-flux" + }, + { + "fileID": 2477676, + "projectID": 67508, + "name": "redstone-paste" + }, + { + "fileID": 2477566, + "projectID": 226447, + "name": "resource-loader" + }, + { + "fileID": 2535889, + "projectID": 256141, + "name": "rustic" + }, + { + "fileID": 2528226, + "projectID": 234840, + "name": "saltymod" + }, + { + "fileID": 2524919, + "projectID": 282988, + "name": "scavenge" + }, + { + "fileID": 2525947, + "projectID": 286352, + "name": "smoothwater" + }, + { + "fileID": 2445236, + "projectID": 222789, + "name": "sound-filters" + }, + { + "fileID": 2521789, + "projectID": 244147, + "name": "stellar-api" + }, + { + "fileID": 2526067, + "projectID": 236078, + "name": "stellar-sky" + }, + { + "fileID": 2510275, + "projectID": 253056, + "name": "storage-boats-mod" + }, + { + "fileID": 2509208, + "projectID": 268104, + "name": "the-creeping-nether" + }, + { + "fileID": 2518222, + "projectID": 222880, + "name": "thermal-foundation" + }, + { + "fileID": 2536995, + "projectID": 246391, + "name": "tough-as-nails" + }, + { + "fileID": 2463895, + "projectID": 243639, + "name": "truetype-font-replacement" + }, + { + "fileID": 2488657, + "projectID": 245028, + "name": "tumbleweed" + }, + { + "fileID": 2534327, + "projectID": 244258, + "name": "unidict" + }, + { + "fileID": 2530596, + "projectID": 272637, + "name": "vanillatweaks" + }, + { + "fileID": 2528326, + "projectID": 273605, + "name": "veining" + }, + { + "fileID": 2441265, + "projectID": 260621, + "name": "villager-trade-tables" + }, + { + "fileID": 2534271, + "projectID": 253043, + "name": "wanionlib" + }, + { + "fileID": 2525511, + "projectID": 257572, + "name": "wearable-backpacks" + }, + { + "fileID": 2515877, + "projectID": 237746, + "name": "weather-storms-tornadoes" + }, + { + "fileID": 2537029, + "projectID": 282648, + "name": "weissalbedo" + }, + { + "fileID": 2456802, + "projectID": 269377, + "name": "wopper", + "skipDownload": true + } + ], + "thirdParty": [ + { + "url": "https://media.forgecdn.net/files/2535/189/Dimdoors-3.0.7-b-1.233.jar", + "name": "dimensionaldoors" + }, + { + "url": "https://media.forgecdn.net/files/2533/991/Pam%27s+HarvestCraft+1.12.2q.jar", + "name": "pams-harvestcraft" + } + ] +} \ No newline at end of file diff --git a/common/dev/mods.json b/common/dev/mods.json new file mode 100644 index 0000000..e69de29 diff --git a/common/prod/mods.json b/common/prod/mods.json new file mode 100644 index 0000000..e69de29 diff --git a/launcher/modpack.json b/launcher/modpack.json new file mode 100644 index 0000000..6e1d855 --- /dev/null +++ b/launcher/modpack.json @@ -0,0 +1,17 @@ +{ + "name": "${project.artifactId}${launcher.name.dev}", + "title": "${project.name}${launcher.title.dev}", + "gameVersion": "${mcVersion}", + "launch": { + "flags": [ + "-Dfml.ignoreInvalidMinecraftCertificates=true" + ] + }, + "userFiles": { + "include": [ + "options.txt", + "optionsshaders.txt", + "mods/VoxelMods/*" + ] + } +} diff --git a/makepack-dev.bat b/makepack-dev.bat new file mode 100644 index 0000000..58152dc --- /dev/null +++ b/makepack-dev.bat @@ -0,0 +1,5 @@ +:: Call Pack Download Script +call packdownload.bat + +:: Assemble the Modpack +mvnw clean package -D profile.develop diff --git a/makepack-prod.bat b/makepack-prod.bat new file mode 100644 index 0000000..c3e0514 --- /dev/null +++ b/makepack-prod.bat @@ -0,0 +1,5 @@ +:: Call Pack Download Script +call packdownload.bat + +:: Assemble the Modpack +mvnw clean package -D profile.master diff --git a/mvnw b/mvnw new file mode 100644 index 0000000..5bf251c --- /dev/null +++ b/mvnw @@ -0,0 +1,225 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Maven2 Start Up Batch script +# +# Required ENV vars: +# ------------------ +# JAVA_HOME - location of a JDK home dir +# +# Optional ENV vars +# ----------------- +# M2_HOME - location of maven2's installed home dir +# MAVEN_OPTS - parameters passed to the Java VM when running Maven +# e.g. to debug Maven itself, use +# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +# MAVEN_SKIP_RC - flag to disable loading of mavenrc files +# ---------------------------------------------------------------------------- + +if [ -z "$MAVEN_SKIP_RC" ] ; then + + if [ -f /etc/mavenrc ] ; then + . /etc/mavenrc + fi + + if [ -f "$HOME/.mavenrc" ] ; then + . "$HOME/.mavenrc" + fi + +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +darwin=false; +mingw=false +case "`uname`" in + CYGWIN*) cygwin=true ;; + MINGW*) mingw=true;; + Darwin*) darwin=true + # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home + # See https://developer.apple.com/library/mac/qa/qa1170/_index.html + if [ -z "$JAVA_HOME" ]; then + if [ -x "/usr/libexec/java_home" ]; then + export JAVA_HOME="`/usr/libexec/java_home`" + else + export JAVA_HOME="/Library/Java/Home" + fi + fi + ;; +esac + +if [ -z "$JAVA_HOME" ] ; then + if [ -r /etc/gentoo-release ] ; then + JAVA_HOME=`java-config --jre-home` + fi +fi + +if [ -z "$M2_HOME" ] ; then + ## resolve links - $0 may be a link to maven's home + PRG="$0" + + # need this for relative symlinks + while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG="`dirname "$PRG"`/$link" + fi + done + + saveddir=`pwd` + + M2_HOME=`dirname "$PRG"`/.. + + # make it fully qualified + M2_HOME=`cd "$M2_HOME" && pwd` + + cd "$saveddir" + # echo Using m2 at $M2_HOME +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --unix "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --unix "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --unix "$CLASSPATH"` +fi + +# For Migwn, ensure paths are in UNIX format before anything is touched +if $mingw ; then + [ -n "$M2_HOME" ] && + M2_HOME="`(cd "$M2_HOME"; pwd)`" + [ -n "$JAVA_HOME" ] && + JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" + # TODO classpath? +fi + +if [ -z "$JAVA_HOME" ]; then + javaExecutable="`which javac`" + if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then + # readlink(1) is not available as standard on Solaris 10. + readLink=`which readlink` + if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then + if $darwin ; then + javaHome="`dirname \"$javaExecutable\"`" + javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" + else + javaExecutable="`readlink -f \"$javaExecutable\"`" + fi + javaHome="`dirname \"$javaExecutable\"`" + javaHome=`expr "$javaHome" : '\(.*\)/bin'` + JAVA_HOME="$javaHome" + export JAVA_HOME + fi + fi +fi + +if [ -z "$JAVACMD" ] ; then + if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD="`which java`" + fi +fi + +if [ ! -x "$JAVACMD" ] ; then + echo "Error: JAVA_HOME is not defined correctly." >&2 + echo " We cannot execute $JAVACMD" >&2 + exit 1 +fi + +if [ -z "$JAVA_HOME" ] ; then + echo "Warning: JAVA_HOME environment variable is not set." +fi + +CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher + +# traverses directory structure from process work directory to filesystem root +# first directory with .mvn subdirectory is considered project base directory +find_maven_basedir() { + + if [ -z "$1" ] + then + echo "Path not specified to find_maven_basedir" + return 1 + fi + + basedir="$1" + wdir="$1" + while [ "$wdir" != '/' ] ; do + if [ -d "$wdir"/.mvn ] ; then + basedir=$wdir + break + fi + # workaround for JBEAP-8937 (on Solaris 10/Sparc) + if [ -d "${wdir}" ]; then + wdir=`cd "$wdir/.."; pwd` + fi + # end of workaround + done + echo "${basedir}" +} + +# concatenates all lines of a file +concat_lines() { + if [ -f "$1" ]; then + echo "$(tr -s '\n' ' ' < "$1")" + fi +} + +BASE_DIR=`find_maven_basedir "$(pwd)"` +if [ -z "$BASE_DIR" ]; then + exit 1; +fi + +export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} +echo $MAVEN_PROJECTBASEDIR +MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" + +# For Cygwin, switch paths to Windows format before running java +if $cygwin; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --path --windows "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --windows "$CLASSPATH"` + [ -n "$MAVEN_PROJECTBASEDIR" ] && + MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` +fi + +WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +exec "$JAVACMD" \ + $MAVEN_OPTS \ + -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ + "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ + ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" diff --git a/mvnw.cmd b/mvnw.cmd new file mode 100644 index 0000000..019bd74 --- /dev/null +++ b/mvnw.cmd @@ -0,0 +1,143 @@ +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM http://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Maven2 Start Up Batch script +@REM +@REM Required ENV vars: +@REM JAVA_HOME - location of a JDK home dir +@REM +@REM Optional ENV vars +@REM M2_HOME - location of maven2's installed home dir +@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands +@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending +@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven +@REM e.g. to debug Maven itself, use +@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files +@REM ---------------------------------------------------------------------------- + +@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' +@echo off +@REM enable echoing my setting MAVEN_BATCH_ECHO to 'on' +@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% + +@REM set %HOME% to equivalent of $HOME +if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") + +@REM Execute a user defined script before this one +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre +@REM check for pre script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" +if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" +:skipRcPre + +@setlocal + +set ERROR_CODE=0 + +@REM To isolate internal variables from possible post scripts, we use another setlocal +@setlocal + +@REM ==== START VALIDATION ==== +if not "%JAVA_HOME%" == "" goto OkJHome + +echo. +echo Error: JAVA_HOME not found in your environment. >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +:OkJHome +if exist "%JAVA_HOME%\bin\java.exe" goto init + +echo. +echo Error: JAVA_HOME is set to an invalid directory. >&2 +echo JAVA_HOME = "%JAVA_HOME%" >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +@REM ==== END VALIDATION ==== + +:init + +@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". +@REM Fallback to current working directory if not found. + +set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% +IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir + +set EXEC_DIR=%CD% +set WDIR=%EXEC_DIR% +:findBaseDir +IF EXIST "%WDIR%"\.mvn goto baseDirFound +cd .. +IF "%WDIR%"=="%CD%" goto baseDirNotFound +set WDIR=%CD% +goto findBaseDir + +:baseDirFound +set MAVEN_PROJECTBASEDIR=%WDIR% +cd "%EXEC_DIR%" +goto endDetectBaseDir + +:baseDirNotFound +set MAVEN_PROJECTBASEDIR=%EXEC_DIR% +cd "%EXEC_DIR%" + +:endDetectBaseDir + +IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig + +@setlocal EnableExtensions EnableDelayedExpansion +for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a +@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% + +:endReadAdditionalConfig + +SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" + +set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" +set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* +if ERRORLEVEL 1 goto error +goto end + +:error +set ERROR_CODE=1 + +:end +@endlocal & set ERROR_CODE=%ERROR_CODE% + +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost +@REM check for post script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" +if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" +:skipRcPost + +@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' +if "%MAVEN_BATCH_PAUSE%" == "on" pause + +if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% + +exit /B %ERROR_CODE% diff --git a/packdownload.bat b/packdownload.bat new file mode 100644 index 0000000..aa1052b --- /dev/null +++ b/packdownload.bat @@ -0,0 +1,29 @@ +:: Clean out old folders +del /s /q "common\base\loaders\*.jar" +del /s /q "common\dev\mods\*.jar" +del /s /q "common\base\mods\*.jar" +del /s /q "common\prod\mods\*.jar" +del /s /q "client\dev\mods\*.jar" +del /s /q "client\base\mods\*.jar" +del /s /q "client\prod\mods\*.jar" +del /s /q "server\dev\mods\*.jar" +del /s /q "server\base\mods\*.jar" +del /s /q "server\prod\mods\*.jar" + +:: Set ModpackDownloader Variable +for /f "delims=" %%i IN ('dir *.jar /b') DO set modpackdownloader=%%i + +:: Download All Common Mods +java -jar "%modpackdownloader%" -manifest common/dev/mods.json -folder common/dev/mods +java -jar "%modpackdownloader%" -manifest common/base/mods.json -folder common/base/mods +java -jar "%modpackdownloader%" -manifest common/prod/mods.json -folder common/prod/mods + +:: Download All Client Mods +java -jar "%modpackdownloader%" -manifest client/dev/mods.json -folder client/dev/mods +java -jar "%modpackdownloader%" -manifest client/base/mods.json -folder client/base/mods +java -jar "%modpackdownloader%" -manifest client/prod/mods.json -folder client/prod/mods + +:: Download All Server Mods +java -jar "%modpackdownloader%" -manifest server/dev/mods.json -folder server/dev/mods +java -jar "%modpackdownloader%" -manifest server/base/mods.json -folder server/base/mods +java -jar "%modpackdownloader%" -manifest server/prod/mods.json -folder server/prod/mods diff --git a/packupdate.bat b/packupdate.bat new file mode 100644 index 0000000..8ec3353 --- /dev/null +++ b/packupdate.bat @@ -0,0 +1,24 @@ +:: Set ModpackDownloader Variable +for /f "delims=" %%i IN ('dir *.jar /b') DO set modpackdownloader=%%i + +:: Update Modpack Downloader +::java -jar "%modpackdownloader%" -updateApp + +:: Update ModpackDownloader Variable +for /f "skip=1 eol=: delims=" %%F in ('dir /b /o-d ModPackDownloader*.jar') do @del "%%F" +for /f "delims=" %%i IN ('dir *.jar /b') DO set modpackdownloader=%%i + +:: Update All Common Mod JSONs +java -jar "%modpackdownloader%" -manifest common/dev/mods.json -folder common/dev/mods -updateMods -releaseType beta -backupVersions 1.12,1.12.1 +java -jar "%modpackdownloader%" -manifest common/base/mods.json -folder common/base/mods -updateMods -releaseType beta -backupVersions 1.12,1.12.1 +java -jar "%modpackdownloader%" -manifest common/prod/mods.json -folder common/prod/mods -updateMods -releaseType beta -backupVersions 1.12,1.12.1 + +:: Update All Client Mod JSONs +java -jar "%modpackdownloader%" -manifest client/dev/mods.json -folder client/dev/mods -updateMods -releaseType beta -backupVersions 1.12,1.12.1 +java -jar "%modpackdownloader%" -manifest client/base/mods.json -folder client/base/mods -updateMods -releaseType beta -backupVersions 1.12,1.12.1 +java -jar "%modpackdownloader%" -manifest client/prod/mods.json -folder client/prod/mods -updateMods -releaseType beta -backupVersions 1.12,1.12.1 + +:: Update All Server Mod JSONs +java -jar "%modpackdownloader%" -manifest server/dev/mods.json -folder server/dev/mods -updateMods -releaseType beta -backupVersions 1.12,1.12.1 +java -jar "%modpackdownloader%" -manifest server/base/mods.json -folder server/base/mods -updateMods -releaseType beta -backupVersions 1.12,1.12.1 +java -jar "%modpackdownloader%" -manifest server/prod/mods.json -folder server/prod/mods -updateMods -releaseType beta -backupVersions 1.12,1.12.1 diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..f0aaf92 --- /dev/null +++ b/pom.xml @@ -0,0 +1,288 @@ + + 4.0.0 + com.undeadzeratul + systemic-survival + 0.0.1 + Systemic Survival + http://github.com/UndeadZeratul/SystemicSurvival + pom + + 1.12.2 + SNAPSHOT + + + 0.2-SNAPSHOT + 2.6 + + + + + launcher + true + + + src/main/resources + true + + + ${project.artifactId}-${project.version}+${build.number} + + + + client + + + profile.master + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + com.nincraft + modpack-assembly + ${modpack.archetype.version} + + + + + client + package + + single + + + + assembly-client + + + + + + + + + + + client-dev + + + profile.develop + + true + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + com.nincraft + modpack-assembly + ${modpack.archetype.version} + + + + + client-dev + package + + single + + + + assembly-client-dev + + + + + + + + + + + server + + + profile.master + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + com.nincraft + modpack-assembly + ${modpack.archetype.version} + + + + + server + package + + single + + + + assembly-server + + + + + + + + + + + server-dev + + + profile.develop + + true + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + com.nincraft + modpack-assembly + ${modpack.archetype.version} + + + + + server-dev + package + + single + + + + assembly-server-dev + + + + + + + + + + + client-ftb + + + profile.master + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + com.nincraft + modpack-assembly + ${modpack.archetype.version} + + + + + client-ftb + package + + single + + + + assembly-client-ftb + + + + + + + + + + + client-technic + + + profile.master + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + com.nincraft + modpack-assembly + ${modpack.archetype.version} + + + + + client-technic + package + + single + + + + assembly-client-technic + + + + + + + + + + + + + releases + http://dev.nincraft.com:8081/nexus/content/repositories/releases/ + + + snapshots + http://dev.nincraft.com:8081/nexus/content/repositories/snapshots/ + + + + + releases + http://dev.nincraft.com:8081/nexus/content/repositories/releases/ + + + snapshots + http://dev.nincraft.com:8081/nexus/content/repositories/snapshots/ + + + diff --git a/server/base/mods.json b/server/base/mods.json new file mode 100644 index 0000000..e69de29 diff --git a/server/dev/mods.json b/server/dev/mods.json new file mode 100644 index 0000000..e69de29 diff --git a/server/dev/server.properties b/server/dev/server.properties new file mode 100644 index 0000000..f0256ef --- /dev/null +++ b/server/dev/server.properties @@ -0,0 +1,34 @@ +#Minecraft server properties +#Mon Oct 27 01:35:33 CDT 2014 +generator-settings= +op-permission-level=4 +allow-nether=true +level-name=world +enable-query=false +allow-flight=true +announce-player-achievements=true +server-port=25560 +level-type=DEFAULT +enable-rcon=false +force-gamemode=false +level-seed= +server-ip= +max-build-height=256 +spawn-npcs=true +white-list=true +spawn-animals=true +snooper-enabled=true +hardcore=false +online-mode=true +resource-pack= +pvp=true +difficulty=3 +enable-command-block=false +player-idle-timeout=0 +gamemode=0 +max-players=12 +spawn-monsters=true +view-distance=10 +generate-structures=true +spawn-protection=16 +motd=${project.name} ${project.version} diff --git a/server/prod/mods.json b/server/prod/mods.json new file mode 100644 index 0000000..e69de29 diff --git a/server/prod/server.properties b/server/prod/server.properties new file mode 100644 index 0000000..534ef2a --- /dev/null +++ b/server/prod/server.properties @@ -0,0 +1,34 @@ +#Minecraft server properties +#Mon Oct 27 01:35:33 CDT 2014 +generator-settings= +op-permission-level=4 +allow-nether=true +level-name=world +enable-query=false +allow-flight=true +announce-player-achievements=true +server-port=25565 +level-type=DEFAULT +enable-rcon=false +force-gamemode=false +level-seed= +server-ip= +max-build-height=256 +spawn-npcs=true +white-list=true +spawn-animals=true +snooper-enabled=true +hardcore=false +online-mode=true +resource-pack= +pvp=true +difficulty=3 +enable-command-block=false +player-idle-timeout=0 +gamemode=0 +max-players=12 +spawn-monsters=true +view-distance=10 +generate-structures=true +spawn-protection=16 +motd=${project.name} ${project.version}