Skip to content

Commit dbb03ce

Browse files
Add gradle configuration to README
1 parent 2650fe5 commit dbb03ce

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,36 @@
99

1010
## Using LibrarianLib
1111

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+
1233
Due to the fact that (as of April 24th 2020) ForgeGradle's `fg.deobf` is broken (it doesn't properly link sources, and
1334
doesn't support any kind of transitive dependencies), LibrarianLib is distributed in its deobfuscated form. This may
1435
necessitate matching your project's MCP mappings to LibrarianLib's MCP mappings (which can be found in the
1536
`gradle.properties` file under the `mc_mappings_channel` and `mc_mappings_version` keys).
1637

1738
## Contributing
1839

40+
Haven't gotten this procedure ironed out yet.
41+
1942
### Running LibrarianLib
2043
To set up the run configuration for LibrarianLib, run the `genIntellijRuns` or `genEclipseRuns` for the `runtime`
2144
subproject.

gradle-docs.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,9 @@ https://github.com/bintray/gradle-bintray-plugin
9999
- TODO: CurseForge
100100

101101
### 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.
104105

105106
### Snapshots
106107
Snapshots are automatically created when pushing to any branch that starts with `1.15`.

0 commit comments

Comments
 (0)