Skip to content

Commit

Permalink
Cleaned!
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniotarricone committed Dec 13, 2024
1 parent 3b0621e commit 06b81b6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 241 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,10 @@ jobs:
- name: Run integration tests
run: |
${{ runner.temp }}/maven/bin/mvn verify \
-Pit \
-s ${{ runner.temp }}/settings.xml \
--no-transfer-progress \
-DskipUTs=true \
-DskipITs=false \
-Dbase_uri=${{ secrets.IT_BASE_URI }} \
-Dadmin_client_id=${{ secrets.IT_ADMIN_CLIENT_ID }} \
-Dadmin_client_secret=${{ secrets.IT_ADMIN_CLIENT_SECRET }} \
Expand Down
58 changes: 2 additions & 56 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<sonar-plugin.version>4.0.0.4121</sonar-plugin.version>
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
<depcheck-plugin.version>1.2.1</depcheck-plugin.version>
<build-helper-maven-plugin.version>3.6.0</build-helper-maven-plugin.version>
<!-- Encodings -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down Expand Up @@ -248,7 +249,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.6.0</version>
<version>${build-helper-maven-plugin.version}</version>
<executions>
<execution>
<id>add-integration-test-sources</id>
Expand Down Expand Up @@ -428,60 +429,5 @@
</plugins>
</build>
</profile>
<profile>
<id>it</id>
<activation>
<property>
<name>it</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<configuration>
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
</systemPropertyVariables>
<excludes>
<excludes>**/*Test.java</excludes>
</excludes>
<includes>
<include>**/*IT.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>it2</id>
<activation>
<property>
<name>it2</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>it.pagopa.swclient.mil.auth.resource.TokenResourceIntegration</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

This file was deleted.

0 comments on commit 06b81b6

Please sign in to comment.