Próbuję utworzyć wiele profili Mavena w jednym zadaniu Jenkinsa. Każdy profil zmienia kod, a następnie tworzy słoik, wykonując mvn -Pdev install
następnie mvn -Pprod install
w linii poleceń (według Mavena użycie mvn -Pdev,prod install
ma działać, ale nie działa dla mnie). Oto dwa profile w moim projektu pom.xml
:Budowanie wielu profili Mavela dla pojedynczego zadania Jenkinsa
<profiles>
<!-- prod profile -->
<profile>
<id>prod</id>
<build>
<plugins>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.2</version>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<file>src/main/java/com/IQzone/android/configuration/AbstractHoldingRefreshable.java</file>
<replacements>
<replacement>
<token>TrUe</token>
<value>TOAST_SWITCH</value>
</replacement>
</replacements>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>prod</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- dev profile -->
<profile>
<id>dev</id>
<build>
<plugins>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.2</version>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<file>src/main/java/com/IQzone/android/configuration/AbstractHoldingRefreshable.java</file>
<replacements>
<replacement>
<token>TOAST_SWITCH</token>
<value>TrUe</value>
</replacement>
</replacements>
</configuration>
</plugin>
<!-- build project with JAVA 1.6 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>dev</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Jak bym setup Jenkins do automatycznego budowania obu tych profili dla pojedynczego zadania Jenkins, gdy praca jest trafiony na budowie? I umieść oba te słoiki w Artifactory? Mam bardzo małą wiedzę Jenkinsa i nie ma zbyt wielu informacji na ten temat w Internecie.
mam problem, który jest nieco podobny do tego.Umieściłem w tym linku, proszę zajrzyj do niego i daj mi znać, jeśli masz jakieś rozwiązanie. https://stackoverflow.com/questions/48002535/one-profile-properties-are-overriding- with-another-profile-properties-in-maven – SubbaReddy