(Include script that can be used to update statuses) |
m (Update statuses) |
||
Line 188: | Line 188: | ||
|- | |- | ||
| eclipse-mylyn || {{caution}} | | eclipse-mylyn || {{caution}} | ||
|- | |||
| eclipse-ptp || {{caution}} | |||
|- | |- | ||
| ehcache-core || {{caution}} | | ehcache-core || {{caution}} | ||
Line 332: | Line 334: | ||
|- | |- | ||
| janino || {{caution}} | | janino || {{caution}} | ||
|- | |- | ||
| jansi || {{caution}} | | jansi || {{caution}} | ||
Line 512: | Line 512: | ||
|- | |- | ||
| jdependency || {{caution}} | | jdependency || {{caution}} | ||
|- | |- | ||
| jettison || {{caution}} | | jettison || {{caution}} | ||
Line 724: | Line 720: | ||
|- | |- | ||
| maven-shared-io || {{caution}} | | maven-shared-io || {{caution}} | ||
|- | |||
| maven-shared-jar || {{caution}} | |||
|- | |- | ||
| maven-shared-utils || {{caution}} | | maven-shared-utils || {{caution}} |
Revision as of 15:24, 5 February 2013
Java SIG members prepared a plan to simplify dependency chains in Java land a bit. One of the first goals is to simplify Maven itself. To do that we need to fully move all Fedora-specific things out of maven
and into maven-local
.
Scripts used to build RPM packages (mvn-rpmbuild, mvn-local) are already moved, and now we need to move packages that have BuildRequires: maven
so that they have BuildRequires: maven-local
. This will be done automatically by a slightly modified mass-rebuild script from release engineering.
If you want to opt-out of the rebuild temporarily, please create a file "noautorebuild" in your git repository.
Package statuses
means that the package correctly BuildRequires maven-local
, while means that the package still has maven
or xmvn
BuildRequires.
You can use the following script to update the above list:
for br in maven-local maven xmvn; do status="{{caution}}" [ $br = maven-local ] && status="{{check}}" repoquery --repoid rawhide-source --arch=src --whatrequires $br | \ sed -e 's/-[^-]*-[^-]*$//' -e "s/.*/| & || $status/" done | sort -u | sed 'i\ |- '