File tree 2 files changed +26
-2
lines changed
2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 9
9
10
10
## Using LibrarianLib
11
11
12
+ Release builds:
13
+ ``` goovy
14
+ repositories {
15
+ jcenter()
16
+ }
17
+
18
+ dependencies {
19
+ compile 'com.teamwizardry.librarianlib:librarianlib-etcetera:(version)'
20
+ }
21
+ ```
22
+ Snapshot builds:
23
+ ``` goovy
24
+ repositories {
25
+ maven { url = 'https://oss.jfrog.org/artifactory/oss-snapshot-local' }
26
+ }
27
+
28
+ dependencies {
29
+ compile 'com.teamwizardry.librarianlib:librarianlib-etcetera:(branch)-SNAPSHOT'
30
+ }
31
+ ```
32
+
12
33
Due to the fact that (as of April 24th 2020) ForgeGradle's ` fg.deobf ` is broken (it doesn't properly link sources, and
13
34
doesn't support any kind of transitive dependencies), LibrarianLib is distributed in its deobfuscated form. This may
14
35
necessitate matching your project's MCP mappings to LibrarianLib's MCP mappings (which can be found in the
15
36
` gradle.properties ` file under the ` mc_mappings_channel ` and ` mc_mappings_version ` keys).
16
37
17
38
## Contributing
18
39
40
+ Haven't gotten this procedure ironed out yet.
41
+
19
42
### Running LibrarianLib
20
43
To set up the run configuration for LibrarianLib, run the ` genIntellijRuns ` or ` genEclipseRuns ` for the ` runtime `
21
44
subproject.
Original file line number Diff line number Diff line change @@ -99,8 +99,9 @@ https://github.com/bintray/gradle-bintray-plugin
99
99
- TODO: CurseForge
100
100
101
101
### New Module
102
- New packages must first have a release build published to Bintray, which only allows release builds. Once the package is
103
- on Bintray, it must be approved for snapshots on oss.jfrog.org.
102
+ In order for new modules to be put on JCenter, log into bintray and navigate to the newly created project. Select the
103
+ ` Actions ` dropdown in the top-right and click ` Add to JCenter ` . Select ` Is pom project ` , but don't select to add it to
104
+ OJO, since the snapshots will likely have already been uploaded and this will result in an error.
104
105
105
106
### Snapshots
106
107
Snapshots are automatically created when pushing to any branch that starts with ` 1.15 ` .
You can’t perform that action at this time.
0 commit comments