1- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi = " http://www.w3.org/2001/XMLSchema-instance "
2- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
1+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2+ 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" >
33 <modelVersion >4.0.0</modelVersion >
44 <groupId >de.letsdev.intern.openssl</groupId >
55 <artifactId >Openssl-mobile</artifactId >
66 <version >1.0.2o</version >
7-
7+
88 <name >Open ssl for mobile (android and iOS)</name >
9-
9+
1010 <scm >
1111 <url >http://dev1/gitlab/ld/lib-openssl</url >
1212 <connection >scm:git:git://dev1:ld/lib-openssl.git</connection >
3838 </developer >
3939 </developers >
4040
41+ <profiles >
42+ <profile >
43+ <id >ios</id >
44+ <build >
45+ <plugins >
46+ <plugin >
47+ <artifactId >maven-assembly-plugin</artifactId >
48+ <version >2.2-beta-5</version >
49+ <configuration >
50+ <descriptors >
51+ <descriptor >ssl.xml</descriptor >
52+ <descriptor >openssl.xml</descriptor >
53+ <descriptor >crypto.xml</descriptor >
54+ <descriptor >openssl-cpp.xml</descriptor >
55+ </descriptors >
56+ </configuration >
57+ <executions >
58+ <execution >
59+ <id >make-assembly</id >
60+ <phase >package</phase >
61+ <goals >
62+ <goal >single</goal >
63+ </goals >
64+ </execution >
65+ </executions >
66+ </plugin >
67+ </plugins >
68+ </build >
69+ </profile >
70+ <profile >
71+ <id >android</id >
72+ <build >
73+ <plugins >
74+ <plugin >
75+ <artifactId >maven-assembly-plugin</artifactId >
76+ <version >2.2-beta-5</version >
77+ <configuration >
78+ <descriptors >
79+ <descriptor >android.xml</descriptor >
80+ </descriptors >
81+ </configuration >
82+ <executions >
83+ <execution >
84+ <id >make-assembly</id >
85+ <phase >package</phase >
86+ <goals >
87+ <goal >single</goal >
88+ </goals >
89+ </execution >
90+ </executions >
91+ </plugin >
92+ </plugins >
93+ </build >
94+ </profile >
95+ </profiles >
96+
4197 <distributionManagement >
4298 <snapshotRepository >
4399 <id >snapshots</id >
44- <name >Snapshots Intern</name > <!-- deploy snapshot versions only intern -->
100+ <name >Snapshots Intern</name > <!-- deploy snapshot versions only intern -->
45101 <url >${snapshots.url} </url >
46102 </snapshotRepository >
47103 <repository >
71127 </filesets >
72128 </configuration >
73129 </plugin >
74-
75- <plugin >
76- <artifactId >maven-assembly-plugin</artifactId >
77- <version >2.2-beta-5</version >
78- <configuration >
79- <descriptors >
80- <descriptor >ssl.xml</descriptor >
81- <descriptor >openssl.xml</descriptor >
82- <descriptor >crypto.xml</descriptor >
83- <descriptor >android.xml</descriptor >
84- </descriptors >
85- </configuration >
86- <executions >
87- <execution >
88- <id >make-assembly</id > <!-- this is used for inheritance merges -->
89- <phase >package</phase > <!-- append to the packaging phase. -->
90- <goals >
91- <goal >single</goal > <!-- goals == mojos -->
92- </goals >
93- </execution >
94- </executions >
95- </plugin >
96130 </plugins >
97131 </build >
98- <dependencies >
99-
100- </dependencies >
101-
102-
103-
104132</project >
0 commit comments