|
1 |
| -<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"> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 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/xsd/maven-4.0.0.xsd"> |
2 | 4 | <modelVersion>4.0.0</modelVersion>
|
3 | 5 |
|
4 | 6 | <parent>
|
|
59 | 61 | <version>0.4.2</version>
|
60 | 62 | <scope>test</scope>
|
61 | 63 | </dependency>
|
62 |
| - |
| 64 | + |
63 | 65 | <!-- Examples dependencies -->
|
64 | 66 | <dependency>
|
65 | 67 | <groupId>io.reactivex</groupId>
|
|
99 | 101 | <arguments>-Prelease</arguments>
|
100 | 102 | </configuration>
|
101 | 103 | </plugin>
|
| 104 | + <plugin> |
| 105 | + <artifactId>maven-jar-plugin</artifactId> |
| 106 | + <configuration> |
| 107 | + <archive> |
| 108 | + <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
| 109 | + </archive> |
| 110 | + </configuration> |
| 111 | + </plugin> |
| 112 | + <plugin> |
| 113 | + <groupId>org.apache.felix</groupId> |
| 114 | + <artifactId>maven-bundle-plugin</artifactId> |
| 115 | + <version>3.0.1</version> |
| 116 | + <extensions>true</extensions> |
| 117 | + <executions> |
| 118 | + <execution> |
| 119 | + <id>bundle-manifest</id> |
| 120 | + <phase>process-classes</phase> |
| 121 | + <goals> |
| 122 | + <goal>manifest</goal> |
| 123 | + </goals> |
| 124 | + </execution> |
| 125 | + </executions> |
| 126 | + <configuration> |
| 127 | + <supportedProjectTypes> |
| 128 | + <supportedProjectType>jar</supportedProjectType> |
| 129 | + <supportedProjectType>bundle</supportedProjectType> |
| 130 | + </supportedProjectTypes> |
| 131 | + <instructions> |
| 132 | + <Implementation-Title>${project.description}</Implementation-Title> |
| 133 | + <Implementation-Version>${project.version}</Implementation-Version> |
| 134 | + <Bundle-Name>Failsafe</Bundle-Name> |
| 135 | + <Bundle-SymbolicName>net.jodah.failsafe</Bundle-SymbolicName> |
| 136 | + <Export-Package>net.jodah.failsafe*;version=1.0</Export-Package> |
| 137 | + <Import-Package>*</Import-Package> |
| 138 | + </instructions> |
| 139 | + </configuration> |
| 140 | + </plugin> |
102 | 141 | <plugin>
|
103 | 142 | <groupId>org.apache.maven.plugins</groupId>
|
104 | 143 | <artifactId>maven-javadoc-plugin</artifactId>
|
|
0 commit comments