forked from bbstilson/sbt-codeartifact
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d442431
commit 99e7a8b
Showing
9 changed files
with
40 additions
and
23 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,10 @@ | ||
# https://blog.github.com/2017-07-06-introducing-code-owners/ | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# These owners will be the default owners for everything in the repo. | ||
#* @hjz | ||
|
||
# Order is important. The last matching pattern has the most precedence. | ||
# So if a pull request only touches javascript files, only these owners | ||
# will be requested to review. | ||
* @Iterable/sbt-codeartifact-owners |
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 @@ | ||
name: Release | ||
on: | ||
push: | ||
branches: [main] | ||
branches: [main, Original] | ||
tags: ["*"] | ||
jobs: | ||
publish: | ||
|
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,6 @@ | ||
*.class | ||
*.log | ||
.idea | ||
**/out/ | ||
**/.bloop/ | ||
**/.bsp/ | ||
|
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 @@ | ||
# Enable auto-env through the sdkman_auto_env config | ||
# Add key=value pairs of SDKs to use below | ||
java=8.0.412-kona | ||
sbt=1.9.7 |
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,19 +1,26 @@ | ||
inThisBuild( | ||
List( | ||
organization := "io.github.bbstilson", | ||
homepage := Some(url("https://github.com/bbstilson/sbt-codeartifact")), | ||
licenses := Seq("MIT" -> url("https://choosealicense.com/licenses/mit/")), | ||
developers := List( | ||
Developer( | ||
"bbstilson", | ||
"Brandon Stilson", | ||
"[email protected]", | ||
url("https://github.com/bbstilson") | ||
) | ||
) | ||
ThisBuild / organization := "com.iterable" | ||
ThisBuild / organizationName := "Iterable" | ||
ThisBuild / organizationHomepage := Some(url("https://iterable.com")) | ||
|
||
ThisBuild / description := "A plugin for authenticating with AWS CodeArtifact" | ||
ThisBuild / licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT")) | ||
ThisBuild / homepage := Some(url("https://github.com/Iterable/sbt-codeartifact")) | ||
|
||
ThisBuild / developers := List( | ||
Developer( | ||
"douglasthomsen", | ||
"Douglas Thomsen", | ||
"[email protected]", | ||
url("https://github.com/douglasthomsen") | ||
) | ||
) | ||
|
||
ThisBuild / scmInfo := Some( | ||
ScmInfo( | ||
url("https://github.com/Iterable/sbt-codeartifact"), | ||
"scm:[email protected]:Iterable/sbt-codeartifact.git" | ||
) | ||
) | ||
lazy val testSettings: Seq[Setting[_]] = Seq( | ||
scriptedLaunchOpts := { | ||
scriptedLaunchOpts.value ++ Seq( | ||
|
2 changes: 1 addition & 1 deletion
2
sbt-codeartifact/src/sbt-test/sbt-codeartifact/appends-creds/project/plugins.sbt
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 +1 @@ | ||
addSbtPlugin("io.github.bbstilson" % "sbt-codeartifact" % System.getProperty("plugin.version")) | ||
addSbtPlugin("com.iterable" % "sbt-codeartifact" % System.getProperty("plugin.version")) |
2 changes: 1 addition & 1 deletion
2
sbt-codeartifact/src/sbt-test/sbt-codeartifact/do-not-wait-for-skip/project/plugins.sbt
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 +1 @@ | ||
addSbtPlugin("io.github.bbstilson" % "sbt-codeartifact" % System.getProperty("plugin.version")) | ||
addSbtPlugin("com.iterable" % "sbt-codeartifact" % System.getProperty("plugin.version")) |
2 changes: 1 addition & 1 deletion
2
sbt-codeartifact/src/sbt-test/sbt-codeartifact/resolver/project/plugins.sbt
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 +1 @@ | ||
addSbtPlugin("io.github.bbstilson" % "sbt-codeartifact" % System.getProperty("plugin.version")) | ||
addSbtPlugin("com.iterable" % "sbt-codeartifact" % System.getProperty("plugin.version")) |