|
1 |
| - |
| 1 | +<?xml version="1.0" encoding="UTF-8" ?> |
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 | 5 | <parent>
|
6 | 6 | <groupId>com.silverpeas</groupId>
|
|
16 | 16 | <name>Online Office Editor</name>
|
17 | 17 | <build>
|
18 | 18 | <finalName>OpenOfficeLauncher</finalName>
|
19 |
| - <plugins> |
20 |
| - <plugin> |
21 |
| - <groupId>org.apache.maven.plugins</groupId> |
22 |
| - <artifactId>maven-compiler-plugin</artifactId> |
23 |
| - <configuration> |
24 |
| - <encoding>${project.build.sourceEncoding}</encoding> |
25 |
| - </configuration> |
26 |
| - </plugin> |
27 |
| - <plugin> |
28 |
| - <groupId>org.apache.maven.plugins</groupId> |
29 |
| - <artifactId>maven-resources-plugin</artifactId> |
30 |
| - <configuration> |
31 |
| - <encoding>${project.build.sourceEncoding}</encoding> |
32 |
| - </configuration> |
33 |
| - </plugin> |
34 |
| - </plugins> |
35 | 19 | </build>
|
| 20 | + |
36 | 21 | <dependencies>
|
37 | 22 | <dependency>
|
38 | 23 | <groupId>junit</groupId>
|
|
79 | 64 | <artifactId>xercesImpl</artifactId>
|
80 | 65 | </dependency>
|
81 | 66 | </dependencies>
|
| 67 | + <profiles> |
| 68 | + <profile> |
| 69 | + <id>signing</id> |
| 70 | + <build> |
| 71 | + <plugins> |
| 72 | + <plugin> |
| 73 | + <artifactId>maven-jarsigner-plugin</artifactId> |
| 74 | + <executions> |
| 75 | + <execution> |
| 76 | + <id>Signing</id> |
| 77 | + <goals> |
| 78 | + <goal>sign</goal> |
| 79 | + </goals> |
| 80 | + </execution> |
| 81 | + </executions> |
| 82 | + <configuration> |
| 83 | + <alias>Silverpeas</alias> |
| 84 | + <storetype>pkcs12</storetype> |
| 85 | + <keystore>${silverpeas.keystore}</keystore> |
| 86 | + <storepass>${silverpeas.storepass}</storepass> |
| 87 | + <verbose>true</verbose> |
| 88 | + <keypass>${silverpeas.storepass}</keypass> |
| 89 | + </configuration> |
| 90 | + </plugin> |
| 91 | + </plugins> |
| 92 | + </build> |
| 93 | + </profile> |
| 94 | + </profiles> |
| 95 | + |
| 96 | + |
82 | 97 | <properties>
|
83 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 98 | + <silverpeas.keystore>${env.SILVERPEAS_HOME}/bin/silverpeas.p12</silverpeas.keystore> |
| 99 | + <silverpeas.storepass>changeit</silverpeas.storepass> |
84 | 100 | </properties>
|
| 101 | + |
| 102 | + |
85 | 103 | </project>
|
86 | 104 |
|
87 | 105 |
|
|
0 commit comments