|
45 | 45 | <aries.osgi.activator>
|
46 | 46 | org.apache.aries.subsystem.core.internal.Activator
|
47 | 47 | </aries.osgi.activator>
|
48 |
| - <aries.osgi.import> |
| 48 | + <aries.osgi.import> |
49 | 49 | org.osgi.service.subsystem;version="[1.1,1.2)",
|
50 | 50 | org.apache.aries.subsystem;version="[1.2,1.3)",
|
51 | 51 | org.apache.aries.application.*;resolution:=optional,
|
52 | 52 | *
|
53 | 53 | </aries.osgi.import>
|
54 |
| - <aries.osgi.export.pkg /> |
| 54 | + <aries.osgi.export.pkg/> |
55 | 55 | <aries.osgi.private.pkg>
|
56 | 56 | org.apache.aries.subsystem.core.*
|
57 | 57 | </aries.osgi.private.pkg>
|
58 | 58 | <lastReleaseVersion>1.0.0</lastReleaseVersion>
|
59 | 59 | <aries.osgi.provide.capability>
|
60 |
| - osgi.implementation; |
61 |
| - osgi.implementation="osgi.subsystem"; |
62 |
| - version:Version="1.1"; |
63 |
| - uses:="org.osgi.service.subsystem", |
64 |
| - osgi.service; |
65 |
| - objectClass:List<String>="org.osgi.service.subsystem.Subsystem,org.apache.aries.subsystem.AriesSubsystem"; |
66 |
| - uses:="org.osgi.service.subsystem,org.apache.aries.subsystem" |
| 60 | + osgi.implementation; |
| 61 | + osgi.implementation="osgi.subsystem"; |
| 62 | + version:Version="1.1"; |
| 63 | + uses:="org.osgi.service.subsystem", |
| 64 | + osgi.service; |
| 65 | + objectClass:List<String>="org.osgi.service.subsystem.Subsystem,org.apache.aries.subsystem.AriesSubsystem"; |
| 66 | + uses:="org.osgi.service.subsystem,org.apache.aries.subsystem" |
67 | 67 | </aries.osgi.provide.capability>
|
| 68 | + |
| 69 | + |
| 70 | + <org.apache.aries.subsystem.api.version>2.0.10</org.apache.aries.subsystem.api.version> |
| 71 | + <org.apache.aries.util.version>1.1.1</org.apache.aries.util.version> |
| 72 | + <org.apache.aries.application.api.version>1.0.0</org.apache.aries.application.api.version> |
| 73 | + <org.apache.aries.application.utils.version>1.0.0</org.apache.aries.application.utils.version> |
| 74 | + <org.osgi.core.version>6.0.0</org.osgi.core.version> |
| 75 | + <org.osgi.enterprise.version>5.0.0</org.osgi.enterprise.version> |
| 76 | + <org.eclipse.equinox.coordinator.version>1.1.0.v20120522-1841</org.eclipse.equinox.coordinator.version> |
| 77 | + <org.eclipse.equinox.region.version>1.2.101.v20150831-1342</org.eclipse.equinox.region.version> |
| 78 | + <easymock.version>3.0</easymock.version> |
| 79 | + <maven-bundle-plugin.version>2.5.0</maven-bundle-plugin.version> |
68 | 80 | </properties>
|
69 | 81 |
|
70 | 82 | <dependencies>
|
71 | 83 | <dependency>
|
72 | 84 | <groupId>org.apache.aries.subsystem</groupId>
|
73 | 85 | <artifactId>org.apache.aries.subsystem.api</artifactId>
|
74 |
| - <version>2.0.10</version> |
| 86 | + <version>${org.apache.aries.subsystem.api.version}</version> |
75 | 87 | </dependency>
|
76 | 88 | <dependency>
|
77 | 89 | <groupId>org.apache.aries</groupId>
|
78 | 90 | <artifactId>org.apache.aries.util</artifactId>
|
79 |
| - <version>1.1.1</version> |
| 91 | + <version>${org.apache.aries.util.version}</version> |
80 | 92 | </dependency>
|
81 | 93 | <dependency>
|
82 | 94 | <groupId>org.apache.aries.application</groupId>
|
83 | 95 | <artifactId>org.apache.aries.application.api</artifactId>
|
84 |
| - <version>1.0.0</version> |
| 96 | + <version>${org.apache.aries.application.api.version}</version> |
85 | 97 | </dependency>
|
86 | 98 | <dependency>
|
87 | 99 | <groupId>org.apache.aries.application</groupId>
|
88 | 100 | <artifactId>org.apache.aries.application.utils</artifactId>
|
89 |
| - <version>1.0.0</version> |
| 101 | + <version>${org.apache.aries.application.utils.version}</version> |
90 | 102 | </dependency>
|
91 | 103 | <dependency>
|
92 | 104 | <groupId>org.osgi</groupId>
|
93 | 105 | <artifactId>org.osgi.core</artifactId>
|
94 |
| - <version>6.0.0</version> |
| 106 | + <version>${org.osgi.core.version}</version> |
95 | 107 | <scope>provided</scope>
|
96 | 108 | </dependency>
|
97 | 109 | <dependency>
|
98 | 110 | <groupId>org.osgi</groupId>
|
99 | 111 | <artifactId>org.osgi.enterprise</artifactId>
|
100 |
| - <version>5.0.0</version> |
| 112 | + <version>${org.osgi.enterprise.version}</version> |
101 | 113 | <scope>provided</scope>
|
102 | 114 | </dependency>
|
103 | 115 | <dependency>
|
104 | 116 | <groupId>org.eclipse.equinox</groupId>
|
105 | 117 | <artifactId>org.eclipse.equinox.coordinator</artifactId>
|
106 |
| - <version>1.1.0.v20120522-1841</version> |
| 118 | + <version>${org.eclipse.equinox.coordinator.version}</version> |
107 | 119 | </dependency>
|
108 | 120 | <dependency>
|
109 | 121 | <groupId>org.eclipse.equinox</groupId>
|
110 | 122 | <artifactId>org.eclipse.equinox.region</artifactId>
|
111 |
| - <version>1.2.101.v20150831-1342</version> |
| 123 | + <version>${org.eclipse.equinox.region.version}</version> |
112 | 124 | </dependency>
|
113 | 125 | <dependency>
|
114 | 126 | <groupId>org.easymock</groupId>
|
115 | 127 | <artifactId>easymock</artifactId>
|
116 |
| - <version>3.0</version> |
| 128 | + <version>${easymock.version}</version> |
117 | 129 | <scope>test</scope>
|
118 | 130 | </dependency>
|
119 | 131 | <dependency>
|
|
150 | 162 | <plugin>
|
151 | 163 | <groupId>org.apache.felix</groupId>
|
152 | 164 | <artifactId>maven-bundle-plugin</artifactId>
|
153 |
| - <version>2.5.0</version> |
| 165 | + <version>${maven-bundle-plugin.version}</version> |
154 | 166 | <extensions>true</extensions>
|
155 | 167 | <inherited>true</inherited>
|
156 | 168 | <configuration>
|
|
0 commit comments