Skip to content

Commit

Permalink
Anpassung pom
Browse files Browse the repository at this point in the history
  • Loading branch information
seejaybee committed May 2, 2024
1 parent aa40817 commit 679ffc6
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 86 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile_new
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pipeline {
steps {
container('maven') {
script {
mavenDeploy args: "clean install"
mavenDeploy args: "clean deploy -U"
}
}
}
Expand Down
183 changes: 98 additions & 85 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,95 +1,108 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.baloise.testing.framework</groupId>
<artifactId>taf</artifactId>
<version>0.0.9-SNAPSHOT</version>
<groupId>com.baloise.testing.framework</groupId>
<artifactId>taf</artifactId>
<version>0.0.9-SNAPSHOT</version>

<packaging>pom</packaging>
<packaging>pom</packaging>

<name>Test Automation Framework</name>
<name>Test Automation Framework</name>

<scm>
<connection>scm:git:https://github.com/baloise/test-automation-framework.git</connection>
<tag>HEAD</tag>
</scm>
<scm>
<connection>
scm:git:https://github.com/baloise/test-automation-framework.git</connection>
<tag>HEAD</tag>
</scm>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>

<distributionManagement>
<repository>
<id>baloise-releases</id>
<url>https://nexus.balgroupit.com/repository/baloise-ch-releases</url>
</repository>
<snapshotRepository>
<id>baloise-snapshots</id>
<url>https://nexus.balgroupit.com/repository/baloise-ch-snapshots</url>
</snapshotRepository>
</distributionManagement>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
</dependencies>

<dependencies>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>Release-@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushChanges>false</pushChanges>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
</plugins>
</build>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>Release-@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushChanges>false</pushChanges>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
</plugins>
</build>

<modules>
<module>taf-base</module>
<module>taf-base-junit4-extensions</module>
<module>taf-browser-junit4-extensions</module>
<module>taf-browser</module>
<module>taf-common</module>
<module>taf-robot</module>
<module>taf-swing-base</module>
<module>taf-swing-client</module>
<module>taf-swing-server</module>
<module>taf-base-junit5-extensions</module>
</modules>
<modules>
<module>taf-base</module>
<module>taf-base-junit4-extensions</module>
<module>taf-browser-junit4-extensions</module>
<module>taf-browser</module>
<module>taf-common</module>
<module>taf-robot</module>
<module>taf-swing-base</module>
<module>taf-swing-client</module>
<module>taf-swing-server</module>
<module>taf-base-junit5-extensions</module>
</modules>
</project>

0 comments on commit 679ffc6

Please sign in to comment.