mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2025-04-25 08:52:48 +02:00
G5V8DT-22401: Включено подписывание артефактов
This commit is contained in:
parent
c55a783160
commit
55f44b7be8
47
bom/pom.xml
47
bom/pom.xml
@ -87,6 +87,8 @@
|
|||||||
<sonar.issue.ignore.multicriteria.t4.resourceKey>/tests/**/*.java</sonar.issue.ignore.multicriteria.t4.resourceKey>
|
<sonar.issue.ignore.multicriteria.t4.resourceKey>/tests/**/*.java</sonar.issue.ignore.multicriteria.t4.resourceKey>
|
||||||
<!-- Source files should not have any duplicated blocks -->
|
<!-- Source files should not have any duplicated blocks -->
|
||||||
<sonar.cpd.exclusions>**/*Plugin.java,/tests/**/*</sonar.cpd.exclusions>
|
<sonar.cpd.exclusions>**/*Plugin.java,/tests/**/*</sonar.cpd.exclusions>
|
||||||
|
|
||||||
|
<eclipse.jarsigner.plugin.version>1.1.2_p3</eclipse.jarsigner.plugin.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
@ -239,7 +241,7 @@
|
|||||||
<artifactId>maven-antrun-plugin</artifactId>
|
<artifactId>maven-antrun-plugin</artifactId>
|
||||||
<version>1.8</version>
|
<version>1.8</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<!--plugin>
|
||||||
<groupId>org.jacoco</groupId>
|
<groupId>org.jacoco</groupId>
|
||||||
<artifactId>jacoco-maven-plugin</artifactId>
|
<artifactId>jacoco-maven-plugin</artifactId>
|
||||||
<version>${org.jacoco.version}</version>
|
<version>${org.jacoco.version}</version>
|
||||||
@ -248,7 +250,7 @@
|
|||||||
<exclude>**/MdClassPackageImpl*</exclude>
|
<exclude>**/MdClassPackageImpl*</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin-->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>com.ruleoftech</groupId>
|
<groupId>com.ruleoftech</groupId>
|
||||||
<artifactId>markdown-page-generator-plugin</artifactId>
|
<artifactId>markdown-page-generator-plugin</artifactId>
|
||||||
@ -299,6 +301,20 @@
|
|||||||
</excludes>
|
</excludes>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.eclipse.cbi.maven.plugins</groupId>
|
||||||
|
<artifactId>eclipse-jarsigner-plugin</artifactId>
|
||||||
|
<version>${eclipse.jarsigner.plugin.version}</version>
|
||||||
|
<configuration>
|
||||||
|
<signerUrl>${signer.url}/jarsign.php</signerUrl>
|
||||||
|
<excludeInnerJars>true</excludeInnerJars>
|
||||||
|
<retryLimit>5</retryLimit>
|
||||||
|
<systemPropertyVariables>
|
||||||
|
<signer.ssl.keyStore>${env.SIGN_KEYSTORE_PATH}</signer.ssl.keyStore>
|
||||||
|
<signer.ssl.keyStorePassword>${keystorePassword}</signer.ssl.keyStorePassword>
|
||||||
|
</systemPropertyVariables>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
|
|
||||||
@ -387,5 +403,32 @@
|
|||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
|
<profile>
|
||||||
|
<id>sign</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.eclipse.cbi.maven.plugins</groupId>
|
||||||
|
<artifactId>eclipse-jarsigner-plugin</artifactId>
|
||||||
|
<version>${eclipse.jarsigner.plugin.version}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>sign</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>sign</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<fork>true</fork>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
|
||||||
|
|
||||||
</profiles>
|
</profiles>
|
||||||
</project>
|
</project>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user