Skip to content

Commit

Permalink
Merge pull request #516 from jdi-testing/fix_jdk17
Browse files Browse the repository at this point in the history
remove domain from profile
  • Loading branch information
pnatashap authored Sep 7, 2023
2 parents c23d8da + 03a440f commit 9ab69c3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
# comment-on-pull-request: true

- name: Test Coverage
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion jdi-dark-bdd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.15</version>
<version>1.4.20</version>
</dependency>
</dependencies>
</plugin>
Expand Down
21 changes: 3 additions & 18 deletions jdi-dark-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
<aspectj.version>1.9.5</aspectj.version>
<suiteXML.file>general.xml</suiteXML.file>
<jdi.dark.version>1.1.14-SNAPSHOT</jdi.dark.version>
<maven.dep.version>3.2.0</maven.dep.version>
<maven.dep.version>3.3.1</maven.dep.version>
<domain>local=http://localhost:8080, trello=https://api.trello.com/1, google=https://google.com</domain>
<log.level>INFO</log.level>
<!-- - - add-opens java.base/java.lang=ALL-UNNAMED is needed for JDK 16+ -->
<aspectj.args></aspectj.args>
</properties>
Expand Down Expand Up @@ -262,23 +264,6 @@
</reporting>

<profiles>
<profile>
<id>info</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<domain>local=http://localhost:8080, trello=https://api.trello.com/1, google=https://google.com</domain>
<log.level>INFO</log.level>
</properties>
</profile>
<profile>
<id>debug</id>
<properties>
<domain>local=http://localhost:8080, trello=https://api.trello.com/1, google=https://google.com</domain>
<log.level>DEBUG</log.level>
</properties>
</profile>
<profile>
<id>jdk16</id>
<activation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import static org.hamcrest.core.IsEqual.equalTo;

public class PreconditionTests {
public static final String CSV_DATA_FILE = "src/test/resources/testWithPreconditions.csv";
public static final String CSV_DATA_FILE = "./testWithPreconditions.csv";
private ArrayList<String> createdBoardsId = new ArrayList<String>();
private static String newOrgId;

Expand Down
2 changes: 1 addition & 1 deletion jdi-dark-ws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.15</version>
<version>1.4.20</version>
</dependency>
</dependencies>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion jdi-dark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.15</version>
<version>1.4.20</version>
</dependency>
</dependencies>
</plugin>
Expand Down

0 comments on commit 9ab69c3

Please sign in to comment.