Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Ticxo
MoLang
Commits
815e396d
Commit
815e396d
authored
4 years ago
by
EmreTr1
Browse files
Options
Download
Email Patches
Plain Diff
use github packages
parent
52742a6e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
35 deletions
+6
-35
README.md
README.md
+0
-24
build.gradle
build.gradle
+6
-11
No files found.
README.md
View file @
815e396d
...
...
@@ -7,27 +7,3 @@ Minecraft's MoLang parser & evaluator implementation in Java
##### Credits:
-
[
MoLang
](
https://github.com/bridge-core/MoLang
)
##### Repos:
```
xml
<repositories>
<repository>
<id>
bedrockk-releases
</id>
<url>
https://bedrockk.jfrog.io/artifactory/maven-releases/
</url>
</repository>
<repository>
<id>
bedrockk-snapshots
</id>
<url>
https://bedrockk.jfrog.io/artifactory/maven-snapshots/
</url>
</repository>
</repositories>
```
##### Dependency:
```
xml
<dependency>
<groupId>
com.bedrockk
</groupId>
<artifactId>
molang
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<scope>
compile
</scope>
</dependency>
```
This diff is collapsed.
Click to expand it.
build.gradle
View file @
815e396d
...
...
@@ -37,22 +37,17 @@ test {
publishing
{
repositories
{
maven
{
if
(
project
.
version
.
endsWith
(
'-SNAPSHOT'
))
{
url
"https://bedrockk.jfrog.io/artifactory/maven-snapshots/"
}
else
{
url
"https://bedrockk.jfrog.io/artifactory/maven-releases/"
}
name
=
"GitHubPackages"
url
=
uri
(
"https://maven.pkg.github.com/bedrockk/MoLang"
)
credentials
{
username
=
"$
maven_user
"
password
=
"$
maven_pass
"
username
=
"$
GITHUB_PK_USER
"
password
=
"$
GITHUB_PK_TOKEN
"
}
}
}
publications
{
maven
(
MavenPublication
)
{
from
components
.
java
gpr
(
MavenPublication
)
{
from
(
components
.
java
)
}
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment