Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
Update to v1.8.0 (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory Mitchell authored Aug 5, 2023
2 parents 28d2991 + 9a7ec5c commit 443e6c1
Show file tree
Hide file tree
Showing 54 changed files with 2,548 additions and 654 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,32 @@ jobs:
- name: Build with Gradle
run: ./gradlew clean assemble publishToMavenLocal

upload:
runs-on: ubuntu-latest
needs: build
timeout-minutes: 30

name: Create Artifacts
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Change Permissions
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew clean assemble
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: novaconomy
path: |
plugin/build/libs/*.jar
api/build/libs/*.jar
analyze:
runs-on: ubuntu-latest
needs: build
Expand Down
100 changes: 63 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ With the freedom to have your own symbols, icons, conversion rates, and even int

<h2 style="text-decoration: underline;">📓Changelog</h2>

### 💸 1.8.0 Update: Ecstatic Economy
- New Features
- **Unlimited Business Products**
- Corporation Leaderboard
- Tax Revampment
- Create Business & Natural Cause Income Tax
- Fully Configurable in `config.yml`
- Custom Model Data for Business & Corporation Icons
- **Automatic Business Supply**
- Mark Chests to automatically gain supplies from for your Business
- 2 Businesses can share Double Chests, One Business per Chest *Block*
- Other Improvements
- Update to Treasury v2
- Change Command Aliases for Less Confusion
- Minor Optimization Changes

### 👔 1.7.0 Update: Cunning Corporations
- New Features
- **Heavy Optimization**
Expand Down Expand Up @@ -135,55 +151,65 @@ unlimited stock and set the prices to whatever you want!

-----
## 💻 Novaconomy API
[![](https://jitpack.io/v/Team-Inceptus/Novaconomy.svg)](https://jitpack.io/#Team-Inceptus/Novaconomy)
[![](https://jitci.com/gh/Team-Inceptus/Novaconomy/svg)](https://jitci.com/gh/Team-Inceptus/Novaconomy)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/Team-Inceptus/Novaconomy)
![GitHub last commit](https://img.shields.io/github/last-commit/Team-Inceptus/Novaconomy)
![GitHub](https://img.shields.io/github/license/Team-Inceptus/Novaconomy)
[![GitHub branch checks state](https://github.com/Team-Inceptus/Novaconomy/actions/workflows/build.yml/badge.svg)](https://github.com/Team-Inceptus/PlasmaEnchants/actions/)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/Team-Inceptus/Novaconomy?style=plastic)

### Installation

Published as a JitPack repository
<details>
<summary>Maven</summary>

```xml
<project>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<project>

<repositories>
<repository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</repository>
</repositories>

<!-- Include a Version like 1.8.0-SNAPSHOT -->

<dependencies>
<!-- Include just the API -->
<dependency>
<groupId>us.teaminceptus.Novaconomy</groupId>
<artifactId>novaconomy-api</artifactId>
<version>1.2.0</version>
</dependency>
<!-- Include the Actual Plugin -->
<dependency>
<groupId>us.teaminceptus.Novaconomy</groupId>
<artifactId>novaconomy</artifactId>
<version>1.2.0</version>
</dependency>
</dependencies>
</project>
<dependencies>
<dependency>
<groupId>us.teaminceptus.novaconomy</groupId>
<artifactId>novaconomy-api</artifactId>
<version>[VERSION]</version>
</dependency>
</dependencies>

</project>
```
</details>

<details>
<summary>Gradle</summary>
<summary>Gradle (Groovy)</summary>

```gradle
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.Novaconomy:novaconomy-api:Tag'
// Include the Actual Plugin
implementation 'us.teaminceptus.Novaconomy:novaconomy:1.2.0'
}
repositories {
maven { url 'https://repo.codemc.io/repository/maven-snapshots/' }
}
dependencies {
// Include a Version like 1.8.0-SNAPSHOT
implementation 'us.teaminceptus.novaconomy:novaconomy-api:[VERSION]'
}
```
</details>

<details>
<summary>Gradle (Kotlin DSL)</summary>

```kotlin
repositories {
maven(url = "https://repo.codemc.io/repository/maven-snapshots/")
}

dependencies {
implementation('us.teaminceptus.novaconomy:novaconomy-api:[VERSION]')
}
```
</details>

Expand Down
Loading

0 comments on commit 443e6c1

Please sign in to comment.