forked from pool/atinject
Compare commits
13 Commits
cb9b0b62f6
...
f865d5ed4e
Author | SHA256 | Date | |
---|---|---|---|
f865d5ed4e | |||
bb6bd6431e | |||
ddbabb77fb | |||
3c17db68ed | |||
359781cfeb | |||
abbf284546 | |||
dae76ecd48 | |||
8b7e2931ef | |||
4ebd37d84c | |||
d869868eaa | |||
eb302a9ec5 | |||
0799d1e490 | |||
6c9ccc21e1 |
BIN
1.0.5.tar.gz
(Stored with Git LFS)
BIN
1.0.5.tar.gz
(Stored with Git LFS)
Binary file not shown.
14
_service
Normal file
14
_service
Normal file
@@ -0,0 +1,14 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://github.com/jakartaee/inject.git</param>
|
||||
<param name="revision">1.0.5</param>
|
||||
<param name="versionformat">1+%cdgit%h</param>
|
||||
<param name="filename">atinject</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
<service name="set_version" mode="disabled"/>
|
||||
</services>
|
BIN
atinject-1+20211017gitd06ce18.tar.xz
(Stored with Git LFS)
Normal file
BIN
atinject-1+20211017gitd06ce18.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -8,8 +8,8 @@
|
||||
|
||||
<property file="build.properties"/>
|
||||
|
||||
<property name="project.groupId" value="jakarta.inject"/>
|
||||
<property name="project.artifactId" value="jakarta.inject-api"/>
|
||||
<property name="project.groupId" value="javax.inject"/>
|
||||
<property name="project.artifactId" value="javax.inject"/>
|
||||
<property name="project.version" value="1.0.5"/>
|
||||
|
||||
<property name="compiler.release" value="8"/>
|
||||
@@ -123,7 +123,6 @@
|
||||
<attribute name="Bundle-License" value="http://www.apache.org/licenses/LICENSE-2.0.txt"/>
|
||||
<attribute name="Bundle-ManifestVersion" value="2"/>
|
||||
<attribute name="Bundle-Name" value="Jakarta Dependency Injection"/>
|
||||
<!-- <attribute name="Bundle-SymbolicName" value="${project.groupId}.${project.artifactId}"/> -->
|
||||
<attribute name="Bundle-SymbolicName" value="javax.inject"/>
|
||||
<attribute name="Bundle-Version" value="${project.version}"/>
|
||||
<attribute name="Export-Package" value="javax.inject;version="${project.version}""/>
|
||||
|
@@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 9 08:20:48 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- Revert to versioning 1+<date>git<git short hash> to avoid upgrade
|
||||
problems in SLE
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 7 12:10:33 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- Don't distribute as jakarta.inject:jakarta-inject-api artifact
|
||||
to prevent conflicts with the version 2.x that actually has
|
||||
classes in jakarta.inject namespace and thus is incompatible
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 10 08:19:26 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
@@ -27,6 +40,9 @@ Wed Apr 10 08:19:26 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||
* Changes of 1.0:
|
||||
+ First Injection API release for Jakarta EE
|
||||
- Remove unused sub-package tck
|
||||
- Removed patch:
|
||||
* atinject-javadoc.patch
|
||||
+ not needed with this version
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 2 18:23:08 UTC 2022 - Fridrich Strba <fstrba@suse.com>
|
||||
|
@@ -16,13 +16,14 @@
|
||||
#
|
||||
|
||||
|
||||
%global artifactversion 1.0.5
|
||||
Name: atinject
|
||||
Version: 1.0.5
|
||||
Version: 1+20211017gitd06ce18
|
||||
Release: 0
|
||||
Summary: Dependency injection specification for Java (JSR-330)
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/jakartaee/inject/
|
||||
Source0: https://github.com/jakartaee/inject/archive/%{version}.tar.gz
|
||||
Source0: %{name}-%{version}.tar.xz
|
||||
Source1: %{name}-build.xml
|
||||
BuildRequires: ant
|
||||
BuildRequires: fdupes
|
||||
@@ -46,7 +47,7 @@ Group: Documentation/HTML
|
||||
This package contains the API documentation for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n inject-%{version}
|
||||
%setup -q
|
||||
cp %{SOURCE1} build.xml
|
||||
|
||||
%build
|
||||
@@ -55,13 +56,9 @@ cp %{SOURCE1} build.xml
|
||||
%install
|
||||
# jars
|
||||
install -dm 755 %{buildroot}%{_javadir}/javax.inject
|
||||
install -m 0644 target/jakarta.inject-api-%{version}.jar %{buildroot}%{_javadir}/%{name}.jar
|
||||
install -m 0644 target/javax.inject-%{artifactversion}.jar %{buildroot}%{_javadir}/%{name}.jar
|
||||
(cd %{buildroot}%{_javadir}/javax.inject && ln -s ../%{name}.jar .)
|
||||
|
||||
# pom
|
||||
install -dm 755 %{buildroot}%{_mavenpomdir}
|
||||
%{mvn_install_pom} pom.xml %{buildroot}%{_mavenpomdir}/%{name}.pom
|
||||
%add_maven_depmap %{name}.pom %{name}.jar -a javax.inject:javax.inject
|
||||
%add_maven_depmap javax.inject:javax.inject:%{artifactversion} %{name}.jar
|
||||
|
||||
# javadoc
|
||||
install -dm 755 %{buildroot}%{_javadocdir}/%{name}
|
||||
|
Reference in New Issue
Block a user