-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from mipt-npm/dev
0.2.0
- Loading branch information
Showing
34 changed files
with
3,024 additions
and
991 deletions.
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,9 @@ | ||
/** | ||
* JetBrains Space Automation | ||
* This Kotlin-script file lets you automate build activities | ||
* For more info, see https://www.jetbrains.com/help/space/automation.html | ||
*/ | ||
|
||
job("Build and run tests") { | ||
gradlew("openjdk:11", "build") | ||
} |
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,22 @@ | ||
# Changelog | ||
|
||
## [0.2.0] | ||
### Added | ||
- Equality for gdml nodes | ||
- Material builders | ||
- Preprocessor for Gdml expressions (JVM only) | ||
|
||
### Changed | ||
- **Group name changed to `space.kscience`** | ||
- **GDML changed to Gdml to adhere to the code style** | ||
- Kotlin 1.4.30 | ||
- Kotlinx-serialization 1.1.0 | ||
- XmlUtil 0.81.0 | ||
|
||
### Deprecated | ||
|
||
### Removed | ||
|
||
### Fixed | ||
|
||
### Security |
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
Large diffs are not rendered by default.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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,24 +1,10 @@ | ||
pluginManagement { | ||
repositories { | ||
mavenLocal() | ||
jcenter() | ||
gradlePluginPortal() | ||
maven("https://dl.bintray.com/kotlin/kotlin-eap") | ||
maven("https://dl.bintray.com/mipt-npm/dev") | ||
maven("https://dl.bintray.com/mipt-npm/scientifik") | ||
} | ||
|
||
resolutionStrategy { | ||
eachPlugin { | ||
when (requested.id.id) { | ||
"kotlinx-atomicfu" -> useModule("org.jetbrains.kotlinx:atomicfu-gradle-plugin:${requested.version}") | ||
"scientifik.mpp", "scientifik.publish" -> useModule("scientifik:gradle-tools:${requested.version}") | ||
} | ||
} | ||
mavenCentral() | ||
maven("https://repo.kotlin.link") | ||
} | ||
} | ||
|
||
enableFeaturePreview("GRADLE_METADATA") | ||
|
||
rootProject.name = "gdml" | ||
|
Oops, something went wrong.