-
Notifications
You must be signed in to change notification settings - Fork 24
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 #744 from spyrkob/issue_710
[#704] Use jackson-dataformat-yaml WildFly module in the feature pack
- Loading branch information
Showing
9 changed files
with
75 additions
and
2,294 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
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
47 changes: 47 additions & 0 deletions
47
integration-tests/src/test/java/org/wildfly/prospero/it/utils/TestProperties.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,47 @@ | ||
/* | ||
* Copyright 2022 Red Hat, Inc. and/or its affiliates | ||
* and other contributors as indicated by the @author tags. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.wildfly.prospero.it.utils; | ||
|
||
import java.io.IOException; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.Properties; | ||
|
||
/** | ||
* Gives access to build properties defined in pom | ||
*/ | ||
public class TestProperties { | ||
static { | ||
try { | ||
final Properties properties = new Properties(); | ||
properties.load(TestProperties.class.getClassLoader().getResourceAsStream("properties-from-pom.properties")); | ||
WF_CHANNEL_GROUP_ID = properties.getProperty("prospero.test.base.channel.groupId"); | ||
WF_CHANNEL_ARTIFACT_ID = properties.getProperty("prospero.test.base.channel.artifactId"); | ||
WF_CHANNEL_VERSION = properties.getProperty("prospero.test.base.channel.version"); | ||
final String testRepoUrls = properties.getProperty("prospero.test.base.repositories"); | ||
TEST_REPO_URLS = Arrays.asList(testRepoUrls.split(",")); | ||
} catch (IOException e) { | ||
throw new RuntimeException("Unable to read properties file", e); | ||
} | ||
} | ||
|
||
public static final String WF_CHANNEL_GROUP_ID; | ||
public static final String WF_CHANNEL_ARTIFACT_ID; | ||
public static final String WF_CHANNEL_VERSION; | ||
public static final List<String> TEST_REPO_URLS; | ||
} |
Oops, something went wrong.