-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Rename "refinedstorage2" to "refinedstorage"
- Loading branch information
Showing
5,820 changed files
with
78,349 additions
and
78,413 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Use via: git config --local --add blame.ignoreRevsFile .git-blame-ignore-revs | ||
|
||
# Rename "refinedstorage2" to "refinedstorage" | ||
03d02f1e07e1e6e9726404c236c3af227126ade0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
apply from: "https://raw.githubusercontent.com/refinedmods/refinedarchitect/v${gradle.ext.refinedArchitectVersion}/helper.gradle" | ||
|
||
subprojects { | ||
group = 'com.refinedmods.refinedstorage2' | ||
group = 'com.refinedmods.refinedstorage' | ||
|
||
ext { | ||
apis = [ | ||
':refinedstorage2-core-api', | ||
':refinedstorage2-resource-api', | ||
':refinedstorage2-storage-api', | ||
':refinedstorage2-network-api', | ||
':refinedstorage2-network', | ||
':refinedstorage2-grid-api', | ||
':refinedstorage2-query-parser' | ||
':refinedstorage-core-api', | ||
':refinedstorage-resource-api', | ||
':refinedstorage-storage-api', | ||
':refinedstorage-network-api', | ||
':refinedstorage-network', | ||
':refinedstorage-grid-api', | ||
':refinedstorage-query-parser' | ||
] | ||
compileApis = [':refinedstorage2-platform-api'] | ||
compileApis = [':refinedstorage-platform-api'] | ||
} | ||
} | ||
|
||
enableSonarQube("refinedmods_refinedstorage2") | ||
|
||
sonarqube { | ||
properties { | ||
property "sonar.coverage.exclusions", "refinedstorage2-platform-forge/**/*,refinedstorage2-platform-fabric/**/*,refinedstorage2-platform-common/**/*,refinedstorage2-platform-api/**/*" | ||
property "sonar.coverage.exclusions", "refinedstorage-platform-neoforge/**/*,refinedstorage-platform-fabric/**/*,refinedstorage-platform-common/**/*,refinedstorage-platform-api/**/*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<!DOCTYPE import-control PUBLIC | ||
"-//Checkstyle//DTD ImportControl Configuration 1.4//EN" | ||
"https://checkstyle.org/dtds/import_control_1_4.dtd"> | ||
<import-control pkg="com.refinedmods.refinedstorage2" strategyOnMismatch="allowed"> | ||
<import-control pkg="com.refinedmods.refinedstorage" strategyOnMismatch="allowed"> | ||
<disallow pkg="org.jetbrains.annotations"/> | ||
<disallow pkg="org.apache.logging.log4j"/> | ||
</import-control> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
plugins { | ||
id 'java-library' | ||
} | ||
|
||
archivesBaseName = 'refinedstorage-core-api' | ||
|
||
dependencies { | ||
api libs.apiguardian | ||
testImplementation libs.junit.api | ||
testImplementation libs.junit.params | ||
testRuntimeOnly libs.junit.engine | ||
testImplementation libs.assertj | ||
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
} | ||
|
||
enableMutationTesting() | ||
enableJavadoc() | ||
enablePublishing() |
9 changes: 9 additions & 0 deletions
9
refinedstorage-core-api/src/main/java/com/refinedmods/refinedstorage/api/core/Action.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.refinedmods.refinedstorage.api.core; | ||
|
||
import org.apiguardian.api.API; | ||
|
||
@API(status = API.Status.STABLE, since = "2.0.0-milestone.1.0") | ||
public enum Action { | ||
SIMULATE, | ||
EXECUTE | ||
} |
2 changes: 1 addition & 1 deletion
2
...nedstorage2/api/core/CoreValidations.java → ...inedstorage/api/core/CoreValidations.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../FieldsAndMethodsAreNonnullByDefault.java → .../FieldsAndMethodsAreNonnullByDefault.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...api/core/component/ComponentAccessor.java → ...api/core/component/ComponentAccessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...age2/api/core/component/ComponentMap.java → ...rage/api/core/component/ComponentMap.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...i/core/component/ComponentMapFactory.java → ...i/core/component/ComponentMapFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...ore-api/src/main/java/com/refinedmods/refinedstorage/api/core/component/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@ParametersAreNonnullByDefault | ||
@FieldsAndMethodsAreNonnullByDefault | ||
package com.refinedmods.refinedstorage.api.core.component; | ||
|
||
import com.refinedmods.refinedstorage.api.core.FieldsAndMethodsAreNonnullByDefault; | ||
|
||
import javax.annotation.ParametersAreNonnullByDefault; |
5 changes: 5 additions & 0 deletions
5
...dstorage-core-api/src/main/java/com/refinedmods/refinedstorage/api/core/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@ParametersAreNonnullByDefault | ||
@FieldsAndMethodsAreNonnullByDefault | ||
package com.refinedmods.refinedstorage.api.core; | ||
|
||
import javax.annotation.ParametersAreNonnullByDefault; |
19 changes: 19 additions & 0 deletions
19
refinedstorage-core-api/src/main/resources/fabric.mod.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "refinedstorage-core-api", | ||
"version": "${version}", | ||
"name": "Refined Storage Core API", | ||
"authors": [ | ||
"Refined Mods" | ||
], | ||
"license": "MIT", | ||
"environment": "*", | ||
"custom": { | ||
"modmenu": { | ||
"parent": "refinedstorage", | ||
"badges": [ | ||
"library" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.