1
0

12 Commits

Author SHA256 Message Date
f39abc39a6 Accepting request 1283019 from Java:packages
2.2.1

OBS-URL: https://build.opensuse.org/request/show/1283019
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/plexus-velocity?expand=0&rev=9
2025-06-05 18:34:52 +00:00
b8f93aef56 OBS-URL: https://build.opensuse.org/package/show/Java:packages/plexus-velocity?expand=0&rev=28 2025-06-04 16:11:00 +00:00
661301729b OBS-URL: https://build.opensuse.org/package/show/Java:packages/plexus-velocity?expand=0&rev=27 2025-06-04 16:06:35 +00:00
1e5368f693 Accepting request 1282192 from Java:packages
Add dependency on objectweb-asm to build with sisu 0.9.0.M4

OBS-URL: https://build.opensuse.org/request/show/1282192
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/plexus-velocity?expand=0&rev=8
2025-06-03 15:54:07 +00:00
711847abdc OBS-URL: https://build.opensuse.org/package/show/Java:packages/plexus-velocity?expand=0&rev=25 2025-06-03 08:26:16 +00:00
5859845701 OBS-URL: https://build.opensuse.org/package/show/Java:packages/plexus-velocity?expand=0&rev=24 2025-06-02 13:55:13 +00:00
7ad801e2bb Accepting request 1208205 from Java:packages
2.1.0

OBS-URL: https://build.opensuse.org/request/show/1208205
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/plexus-velocity?expand=0&rev=7
2024-10-16 21:46:14 +00:00
0f00e84643 OBS-URL: https://build.opensuse.org/package/show/Java:packages/plexus-velocity?expand=0&rev=22 2024-10-03 13:59:11 +00:00
96a9a16a84 try again
OBS-URL: https://build.opensuse.org/package/show/Java:packages/plexus-velocity?expand=0&rev=21
2024-09-29 18:27:45 +00:00
62a9748654 OBS-URL: https://build.opensuse.org/package/show/Java:packages/plexus-velocity?expand=0&rev=20 2024-09-29 13:08:32 +00:00
5992f65c68 OBS-URL: https://build.opensuse.org/package/show/Java:packages/plexus-velocity?expand=0&rev=19 2024-09-29 13:06:46 +00:00
4cd9dc3f0e OBS-URL: https://build.opensuse.org/package/show/Java:packages/plexus-velocity?expand=0&rev=18 2024-09-29 11:48:38 +00:00
5 changed files with 76 additions and 22 deletions

BIN
plexus-velocity-1.2.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d0b5cff1ebafed63b7ffa4d5f3534eaa6c8415575a48b28a860d72a8f91f3576
size 5120

View File

@@ -10,9 +10,10 @@
<property name="project.groupId" value="org.codehaus.plexus"/> <property name="project.groupId" value="org.codehaus.plexus"/>
<property name="project.artifactId" value="plexus-velocity"/> <property name="project.artifactId" value="plexus-velocity"/>
<property name="project.version" value="1.2"/> <property name="project.version" value="2.2.1"/>
<property name="compiler.source" value="1.8"/> <property name="compiler.release" value="8"/>
<property name="compiler.source" value="1.${compiler.release}"/>
<property name="compiler.target" value="${compiler.source}"/> <property name="compiler.target" value="${compiler.source}"/>
<property name="build.finalName" value="${project.artifactId}-${project.version}"/> <property name="build.finalName" value="${project.artifactId}-${project.version}"/>
@@ -29,18 +30,12 @@
<path id="build.classpath"> <path id="build.classpath">
<fileset dir="lib"> <fileset dir="lib">
<!-- plexus-container-default-1.0-alpha-9-stable-1
commons-collections-3.1 velocity-1.7 -->
<include name="**/*.jar"> <include name="**/*.jar">
</include> </include>
</fileset> </fileset>
</path> </path>
<path id="build.test.classpath"> <path id="build.test.classpath">
<fileset dir="lib"> <fileset dir="lib">
<!-- plexus-container-default-1.0-alpha-9-stable-1
commons-collections-3.1 velocity-1.7
plexus-utils-3.0.22 classworlds-1.1-alpha-2
guava-20.0 xbean-reflect-4.5 commons-lang-2.4 -->
<include name="**/*.jar"> <include name="**/*.jar">
</include> </include>
</fileset> </fileset>
@@ -65,6 +60,7 @@
debug="true" debug="true"
optimize="false" optimize="false"
deprecation="true" deprecation="true"
release="${compiler.release}"
target="${compiler.target}" target="${compiler.target}"
verbose="false" verbose="false"
fork="false" fork="false"
@@ -74,11 +70,34 @@
</src> </src>
<classpath refid="build.classpath"/> <classpath refid="build.classpath"/>
</javac> </javac>
<copy todir="${build.outputDir}">
<fileset dir="${build.resourceDir}"/>
</copy>
</target> </target>
<!-- ====================================================================== -->
<!-- Sisu javax.inject.Named generation target -->
<!-- ====================================================================== -->
<target name="sisu"
depends="compile"
description="Generate javax.inject.Name index">
<sequential>
<java classname="org.eclipse.sisu.space.SisuIndex"
failonerror="true"
fork="true">
<classpath>
<path refid="build.classpath"/>
</classpath>
<arg value="${build.outputDir}"/>
</java>
<move todir="${build.outputDir}/META-INF">
<fileset dir="META-INF"/>
</move>
</sequential>
</target>
<!-- ====================================================================== -->
<!-- Javadoc target -->
<!-- ====================================================================== -->
<target name="javadoc" description="Generates the Javadoc of the application"> <target name="javadoc" description="Generates the Javadoc of the application">
<javadoc sourcepath="${build.srcDir}" <javadoc sourcepath="${build.srcDir}"
packagenames="*" packagenames="*"
@@ -106,7 +125,7 @@
<!-- Package target --> <!-- Package target -->
<!-- ====================================================================== --> <!-- ====================================================================== -->
<target name="package" depends="compile" description="Package the application"> <target name="package" depends="sisu" description="Package the application">
<jar jarfile="${build.dir}/${build.finalName}.jar" <jar jarfile="${build.dir}/${build.finalName}.jar"
compress="true" compress="true"
index="false" index="false"

View File

@@ -1,3 +1,33 @@
-------------------------------------------------------------------
Wed Jun 4 16:07:09 UTC 2025 - Fridrich Strba <fstrba@suse.com>
- Update to version 2.2.1
* Dependency updates
+ Bump org.apache.velocity:velocity-engine-core from 2.4 to
2.4.1
+ Bump org.apache.velocity:velocity-engine-core from 2.3 to 2.4
+ Bump org.eclipse.sisu:org.eclipse.sisu.inject from 0.9.0.M2 to
0.9.0.M3
+ Bump org.codehaus.plexus:plexus from 19 to 20
+ Bump org.codehaus.plexus:plexus from 18 to 19
+ Bump org.codehaus.plexus:plexus from 17 to 18
+ Bump org.codehaus.plexus:plexus from 16 to 17
+ Bump release-drafter/release-drafter from 5 to 6
-------------------------------------------------------------------
Tue Jun 3 08:26:14 UTC 2025 - Fridrich Strba <fstrba@suse.com>
- Add dependency on objectweb-asm to build with sisu 0.9.0.M4
-------------------------------------------------------------------
Thu Oct 3 13:56:35 UTC 2024 - Fridrich Strba <fstrba@suse.com>
- Upgrade to version 2.1.0
* Changes:
+ Upgrade to Velocity Engine 2.0
+ Upgrade Velocity Engine from 2.0 to 2.3
+ Move to JUnit5
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 26 19:41:56 UTC 2024 - Fridrich Strba <fstrba@suse.com> Sun May 26 19:41:56 UTC 2024 - Fridrich Strba <fstrba@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package plexus-velocity # spec file for package plexus-velocity
# #
# Copyright (c) 2024 SUSE LLC # Copyright (c) 2025 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: plexus-velocity Name: plexus-velocity
Version: 1.2 Version: 2.2.1
Release: 0 Release: 0
Summary: Plexus Velocity Component Summary: Plexus Velocity Component
License: Apache-2.0 License: Apache-2.0
@@ -28,11 +28,13 @@ Source1: %{name}-build.xml
Source2: http://www.apache.org/licenses/LICENSE-2.0.txt Source2: http://www.apache.org/licenses/LICENSE-2.0.txt
BuildRequires: ant BuildRequires: ant
BuildRequires: apache-commons-collections BuildRequires: apache-commons-collections
BuildRequires: atinject
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: java-devel >= 1.8 BuildRequires: java-devel >= 1.8
BuildRequires: javapackages-local >= 6 BuildRequires: javapackages-local >= 6
BuildRequires: sisu-plexus BuildRequires: objectweb-asm
BuildRequires: velocity BuildRequires: sisu-inject
BuildRequires: velocity-engine-core
BuildArch: noarch BuildArch: noarch
%description %description
@@ -55,10 +57,13 @@ find -name '*.jar' -delete
cp -p %{SOURCE1} build.xml cp -p %{SOURCE1} build.xml
cp -p %{SOURCE2} LICENSE cp -p %{SOURCE2} LICENSE
%pom_change_dep :plexus-container-default org.eclipse.sisu:org.eclipse.sisu.plexus:0.9.0.M2
mkdir -p lib mkdir -p lib
build-jar-repository -s lib commons-collections org.eclipse.sisu.plexus velocity build-jar-repository -s lib \
atinject \
commons-collections \
objectweb-asm/asm \
org.eclipse.sisu.inject \
velocity-engine/velocity-engine-core
%build %build
ant jar javadoc ant jar javadoc