Skip to content

Commit af1b6fa

Browse files
15knotsjonahgraham
authored andcommitted
Bug 567488: Move cmake code to cmake dir
Change-Id: If3df1f176ed82475d01a047c3a6d8c0882bb1d76 Signed-off-by: Martin Weber <[email protected]>
1 parent 13310b6 commit af1b6fa

File tree

93 files changed

+13
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+13
-9
lines changed

cmake/aggregator/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212

1313
<artifactId>cmake-aggregator</artifactId>
1414
<packaging>pom</packaging>
15-
<!-- aggregates just the cmake bundles -->
15+
<!-- aggregates just the cmake bundles
16+
Convenient if you focus on working on the cmake bundles only.
17+
-->
1618

1719
<modules>
1820
<module>../../releng/org.eclipse.cdt.target</module>
1921
<module>..</module>
20-
<!-- remove once org.eclipse.cdt.cmake bundles moved from /build below /cmake -->
21-
<module>../../build/org.eclipse.cdt.cmake.core</module>
2222
</modules>
2323
</project>

build/org.eclipse.cdt.cmake.ui/META-INF/MANIFEST.MF cmake/org.eclipse.cdt.cmake.ui/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.eclipse.cdt.cmake.ui;singleton:=true
5-
Bundle-Version: 1.3.0.qualifier
5+
Bundle-Version: 1.3.100.qualifier
66
Bundle-Activator: org.eclipse.cdt.cmake.ui.internal.Activator
77
Bundle-Vendor: %providerName
88
Require-Bundle: org.eclipse.core.runtime,

cmake/pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
<packaging>pom</packaging>
1717

1818
<modules>
19+
<module>org.eclipse.cdt.cmake.core</module>
1920
<module>org.eclipse.cdt.cmake.core.tests</module>
21+
<module>org.eclipse.cdt.cmake.ui</module>
22+
<module>org.eclipse.cdt.cmake-feature</module>
2023
<module>org.eclipse.cdt.cmake.is.core.doc</module>
2124
<module>org.eclipse.cdt.cmake.is.core</module>
2225
<module>org.eclipse.cdt.cmake.is.core.tests</module>

pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,6 @@
112112
<module>build/org.eclipse.cdt.autotools.ui</module>
113113
<module>build/org.eclipse.cdt.autotools-feature</module>
114114

115-
<module>build/org.eclipse.cdt.cmake.core</module>
116-
<module>build/org.eclipse.cdt.cmake.ui</module>
117-
<module>build/org.eclipse.cdt.cmake-feature</module>
118-
119115
<module>build/org.eclipse.cdt.meson.core</module>
120116
<module>build/org.eclipse.cdt.meson.docs</module>
121117
<module>build/org.eclipse.cdt.meson.ui</module>
@@ -278,7 +274,6 @@
278274
<module>build/org.eclipse.cdt.make.ui.tests</module>
279275
<module>build/org.eclipse.cdt.autotools.tests</module>
280276
<module>build/org.eclipse.cdt.autotools.ui.tests</module>
281-
<module>build/org.eclipse.cdt.cmake.ui.tests</module>
282277
<module>build/org.eclipse.cdt.meson.ui.tests</module>
283278
<module>codan/org.eclipse.cdt.codan.core.tests</module>
284279
<module>codan/org.eclipse.cdt.codan.checkers.ui.tests</module>

releng/scripts/check_features.sh

+6
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ git ls-files -- \*/feature.xml | while read feature_xml; do
4949
# early copyright year.
5050
feature_start_year=2014
5151
;;
52+
cmake/org.eclipse.cdt.cmake-feature/feature.xml)
53+
# The git history does not show the proper start year for cmake because of Bug 567488
54+
# Note, we can't simply use --follow because that causes other features to have a too
55+
# early copyright year.
56+
feature_start_year=2015
57+
;;
5258
*)
5359
feature_start_year=$(git log --reverse --format='%ad' --date="format:%Y" -- $feature_xml $plugin_dir | head -1)
5460
;;

0 commit comments

Comments
 (0)