Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate the device service implementation #451

Merged
merged 1 commit into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ jobs:
- { name: url, chapter: '52', label: 'URL Handlers', suffix: ' Service Specification', pattern: "TEST-org.osgi.test.cases.url-*.xml" }
- { name: resolver, chapter: '59', label: 'Resolver', suffix: ' Service Specification', pattern: "TEST-org.osgi.test.cases.resolver-*.xml" }
- { name: log, chapter: '101', label: 'Log', suffix: ' Service Specification', pattern: "TEST-org.osgi.test.cases.log-*.xml" }
- { name: device, chapter: '103', label: 'Device Access', suffix: ' Specification', pattern: "TEST-org.osgi.test.cases.device-*.xml" }
- { name: cm, chapter: '104', label: 'Configuration Admin', suffix: ' Service Specification', pattern: "TEST-org.osgi.test.cases.cm-*.xml"}
- { name: metatype, chapter: '105', label: 'Metatype', suffix: ' Service Specification', pattern: "TEST-org.osgi.test.cases.metatype-*.xml" }
- { name: preferences, chapter: '106', label: 'Preferences', suffix: 'Service Specification', pattern: "TEST-org.osgi.test.cases.prefs-*.xml" }
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Equinox implements the follwoing specification with the given level of complianc
| 52 | [URL Handlers Service Specification](https://docs.osgi.org/specification/osgi.core/8.0.0/service.url.html) | ![](https://gist.githubusercontent.com/eclipse-equinox-bot/d941fe2a4992a018d88e778b48ee3135/raw/tck-badge-url.svg) |
| 58 | [Resolver Service Specification](https://docs.osgi.org/specification/osgi.core/8.0.0/service.resolver.html) | ![](https://gist.githubusercontent.com/eclipse-equinox-bot/d941fe2a4992a018d88e778b48ee3135/raw/tck-badge-resolver.svg) |
| 101 | [Log Service Specification](https://docs.osgi.org/specification/osgi.core/8.0.0/service.log.html) | ![](https://gist.githubusercontent.com/eclipse-equinox-bot/d941fe2a4992a018d88e778b48ee3135/raw/tck-badge-log.svg) |
| 103 | [Device Access Specification](https://docs.osgi.org/specification/osgi.cmpn/8.1.0/service.device.html) | ![](https://gist.githubusercontent.com/eclipse-equinox-bot/d941fe2a4992a018d88e778b48ee3135/raw/tck-badge-device.svg) |
| 104 | [Configuration Admin Service Specification](https://docs.osgi.org/specification/osgi.cmpn/8.1.0/service.cm.html) | ![](https://gist.githubusercontent.com/eclipse-equinox-bot/d941fe2a4992a018d88e778b48ee3135/raw/tck-badge-cm.svg) |
| 105 | [Metatype Service Specification](https://docs.osgi.org/specification/osgi.cmpn/8.1.0/service.metatype.html) | ![](https://gist.githubusercontent.com/eclipse-equinox-bot/d941fe2a4992a018d88e778b48ee3135/raw/tck-badge-metatype.svg) |
| 106 | [PreferencesService Specification](https://docs.osgi.org/specification/osgi.cmpn/8.1.0/service.prefs.html) | ![](https://gist.githubusercontent.com/eclipse-equinox-bot/d941fe2a4992a018d88e778b48ee3135/raw/tck-badge-preferences.svg) |
Expand Down
2 changes: 1 addition & 1 deletion bundles/org.eclipse.equinox.device/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %bundleName
Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.eclipse.equinox.device.Activator
Bundle-SymbolicName: org.eclipse.equinox.device
Bundle-SymbolicName: org.eclipse.equinox.device;deprecated:="Deprecated without any direct replacement, please use a different implementation or get in contact with the Equinox team to fix up this one"
Bundle-Vendor: %bundleVendor
Bundle-Localization: plugin
Import-Service: org.osgi.service.log.LogService
Expand Down
3 changes: 0 additions & 3 deletions bundles/org.eclipse.equinox.device/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,3 @@ src.includes = about.html
source.. = src/
output.. = bin/
pom.model.property.code.ignoredWarnings = -warn:-deprecation,raw,unchecked,discouraged,warningToken

## Configuration for TCK tests to execute for this project
pom.model.property.tck.artifact = org.osgi.test.cases.device
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@
<module>bundles/org.eclipse.equinox.useradmin</module>
<module>bundles/org.eclipse.equinox.preferences</module>
<module>bundles/org.eclipse.equinox.metatype</module>
<module>bundles/org.eclipse.equinox.device</module>
<module>bundles/org.eclipse.equinox.event</module>
</modules>
</profile>
Expand Down
6 changes: 0 additions & 6 deletions releng/tcks.target
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@
<version>8.1.0</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.test.cases.device</artifactId>
<version>8.1.0</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.test.cases.event</artifactId>
Expand Down
Loading