-
Notifications
You must be signed in to change notification settings - Fork 28
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 #94 from christophd/issue/75/add-maven-repository
fix(#75): Support custom Maven repository configuration
- Loading branch information
Showing
31 changed files
with
1,296 additions
and
65 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
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 @@ | ||
Feature: JitPack steps extension | ||
|
||
Scenario: Use custom steps | ||
Given My steps are loaded | ||
Then I can do whatever I want! |
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,6 @@ | ||
config: | ||
runtime: | ||
cucumber: | ||
glue: | ||
- "org.citrusframework.yaks" | ||
- "dev.yaks.testing.standard" |
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 @@ | ||
repositories: | ||
- repository: | ||
id: "central" | ||
name: "Maven Central" | ||
url: "https://repo.maven.apache.org/maven2/" | ||
releases: | ||
enabled: "true" | ||
updatePolicy: "daily" | ||
snapshots: | ||
enabled: "false" | ||
- repository: | ||
id: "jitpack.io" | ||
name: "JitPack Repository" | ||
url: "https://jitpack.io" | ||
dependencies: | ||
- dependency: | ||
groupId: com.github.citrusframework | ||
artifactId: yaks-step-extension | ||
version: "0.0.1" |
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,6 @@ | ||
yaks.dependency.camel-groovy=org.apache.camel:camel-groovy:@camel.version@ | ||
# Maven repositories | ||
yaks.repository.central=https://repo.maven.apache.org/maven2/ | ||
yaks.repository.jboss-ea=https://repository.jboss.org/nexus/content/groups/ea/ | ||
|
||
# Additional dependencies | ||
yaks.dependency.camel-groovy=org.apache.camel:camel-groovy:@camel.version@ |
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,5 +1,20 @@ | ||
repositories: | ||
- repository: | ||
id: "central" | ||
name: "Maven Central" | ||
url: "https://repo.maven.apache.org/maven2/" | ||
releases: | ||
enabled: "true" | ||
updatePolicy: "daily" | ||
snapshots: | ||
enabled: "false" | ||
- repository: | ||
id: "jboss-ea" | ||
name: "JBoss Community Early Access Release Repository" | ||
url: "https://repository.jboss.org/nexus/content/groups/ea/" | ||
layout: "default" | ||
dependencies: | ||
- dependency: | ||
groupId: org.apache.camel | ||
artifactId: camel-groovy | ||
version: "@camel.version@" | ||
version: "@camel.version@" |
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
Oops, something went wrong.