Skip to content

Commit

Permalink
314 IntegrationTest is now running
Browse files Browse the repository at this point in the history
  • Loading branch information
ruhrotht authored and ruhrotht committed Sep 29, 2024
1 parent 28d281d commit 93cfbd3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 145 deletions.
9 changes: 8 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ tasks.register("integrationTestMavenOnly") {
}
logger.debug "Script output: $result"
File integrationTestDirectory = file(INTEGRATION_TEST_DIRECTORY)
final File testIndex = new File(integrationTestDirectory, "build/reports/index.html")
final File testIndex = new File(integrationTestDirectory, "target/reports/htmlSanityCheck/index.html")
assert testIndex.exists()
}
}
Expand Down Expand Up @@ -407,6 +407,13 @@ integrationTest.dependsOn(

)


integrationTest.mustRunAfter(
'integrationTestMaven',
'integrationTestGradle'

)

/*
* Copyright Gernot Starke and aim42 contributors.
*
Expand Down
10 changes: 5 additions & 5 deletions integration-test/maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@
<build>
<plugins>
<plugin>
<groupId>dorg.aim42.htmlSanityCheck</groupId>
<groupId>org.aim42.htmlSanityCheck</groupId>
<artifactId>htmlsanitycheck-maven-plugin</artifactId>
<version>${htmlSanityCheckVersion}</version>
<version>2.0.0-rc1</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>htmlSanityCheck</goal>
<goal>sanity-check</goal>
</goals>
</execution>
</executions>
<configuration>
<sourceDocuments>
<file>file-to-test.html</file>
<file>src/file-to-test.html</file>
</sourceDocuments>
<sourceDir>src/</sourceDir>
<sourceDir>src</sourceDir>
</configuration>
</plugin>
</plugins>
Expand Down
139 changes: 0 additions & 139 deletions integration-test/maven-plugin/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,143 +4,4 @@

<localRepository>../../build/maven-repo</localRepository>

<pluginGroups>
<pluginGroup>
org.sonarsource.scanner.maven
</pluginGroup>
</pluginGroups>

<servers>
<server>
<id>tc-bib-releases</id>
<username>${repo.username}</username>
<password>${repo.password}</password>
<configuration>
<httpConfiguration>
<all>
<!-- Preemptive - Auth einfach immer mitsenden -->
<usePreemptive>true</usePreemptive>
</all>
</httpConfiguration>
</configuration>
</server>
<server>
<id>tc-bib-snapshots</id>
<username>${repo.username}</username>
<password>${repo.password}</password>
<configuration>
<httpConfiguration>
<all>
<!-- Preemptive - Auth einfach immer mitsenden -->
<usePreemptive>true</usePreemptive>
</all>
</httpConfiguration>
</configuration>
</server>
</servers>
<mirrors>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<name>Nexus</name>
<url>https://nexus.apps.ocp.tc.gby.msg.team/repository/maven-public/</url>
</mirror>
<mirror>
<id>artifactory</id>
<mirrorOf>*</mirrorOf>
<name>Artifactory</name>
<url>http://registry.ct.ocp.tc.corp/artifactory/maven-public-all/</url>
</mirror>
</mirrors>


<profiles>
<profile>
<id>Nexus</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<sonar.host.url>https://ct.hub.msg.team/cqu-sonarqube/</sonar.host.url>
</properties>

<repositories>
<repository>
<id>central</id>
<url>https://nexus.apps.ocp.tc.gby.msg.team/repository/maven-public/</url>
</repository>
<repository>
<id>tc-bib-snapshots</id>
<name>nexus Gradle-PlugIns Proxy Repository Snapshots</name>
<url>https://nexus.apps.ocp.tc.gby.msg.team/repository/maven-tc-bib-snapshots/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
<repository>
<id>tc-bib-releases</id>
<name>nexus Maven Plugin Repository Releases</name>
<url>https://nexus.apps.ocp.tc.gby.msg.team/repository/maven-tc-bib-releases/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
</repositories>

<pluginRepositories>

<pluginRepository>
<id>central</id>
<url>https://nexus.apps.ocp.tc.gby.msg.team/repository/maven-public/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
<profile>
<id>Artifactory</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<repositories>
<repository>
<id>central</id>
<url>http://registry.ct.ocp.tc.corp/artifactory/maven-public-all/</url>
</repository>
<repository>
<id>tc-bib-snapshots</id>
<name>artifactory Gradle-PlugIns Proxy Repository Snapshots</name>
<url>http://registry.ct.ocp.tc.corp/artifactory/msg-generic-maven/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
<repository>
<id>tc-bib-releases</id>
<name>artifactory Maven Plugin Repository Releases</name>
<url>http://registry.ct.ocp.tc.corp/artifactory/msg-generic-maven/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://registry.ct.ocp.tc.corp/artifactory/maven-public-all/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
</settings>

0 comments on commit 93cfbd3

Please sign in to comment.