Skip to content

Commit

Permalink
Version 1.2.0 closes #168
Browse files Browse the repository at this point in the history
  • Loading branch information
de-jcup committed Dec 16, 2016
1 parent ddd6e9b commit 4e18062
Show file tree
Hide file tree
Showing 25 changed files with 97 additions and 19 deletions.
4 changes: 2 additions & 2 deletions egradle-feature-junit/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="de.jcup.egradle.eclipse.feature.junit"
label="EGradle JUnit Integration"
version="1.1.4"
version="1.2.0"
provider-name="Albert Tregnaghi"
plugin="de.jcup.egradle.eclipse.plugin.branding">

Expand Down Expand Up @@ -89,7 +89,7 @@ END OF TERMS AND CONDITIONS
<import plugin="org.eclipse.core.runtime"/>
<import plugin="org.eclipse.jdt.core"/>
<import plugin="org.eclipse.jdt.junit"/>
<import plugin="de.jcup.egradle.eclipse.plugin.main" version="1.1.4" match="greaterOrEqual"/>
<import plugin="de.jcup.egradle.eclipse.plugin.main" version="1.2.0" match="greaterOrEqual"/>
<import plugin="org.eclipse.core.resources"/>
<import plugin="org.eclipse.debug.core"/>
<import plugin="org.eclipse.debug.ui"/>
Expand Down
2 changes: 1 addition & 1 deletion egradle-feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="de.jcup.egradle.eclipse.feature"
label="EGradle"
version="1.1.4"
version="1.2.0"
provider-name="Albert Tregnaghi"
plugin="de.jcup.egradle.eclipse.plugin.branding">

Expand Down
2 changes: 1 addition & 1 deletion egradle-plugin-branding/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: EGradle
Bundle-SymbolicName: de.jcup.egradle.eclipse.plugin.branding;singleton:=true
Bundle-Version: 1.1.4
Bundle-Version: 1.2.0
Bundle-Vendor: Albert Tregnaghi
2 changes: 1 addition & 1 deletion egradle-plugin-branding/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<p>
<img alt="EGradle branding plugin" src="egradle-banner_128x128.png"></img>
</p>
<p>Version: 1.1.4</p>
<p>Version: 1.2.0</p>
<p>Copyright: Albert Tregnaghi</p>
<p>License: <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0</a><p>

Expand Down
2 changes: 1 addition & 1 deletion egradle-plugin-branding/about.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aboutText=EGradle\n\
Version 1.1.4\n\
Version 1.2.0\n\
\n\
License: Apache 2.0\n\
Visit: https://github.com/de-jcup/egradle
Expand Down
4 changes: 2 additions & 2 deletions egradle-plugin-gradle-editor/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Egradle editor
Bundle-SymbolicName: de.jcup.egradle.eclipse.plugin.editor.gradle;singleton:=true
Bundle-Version: 1.1.4
Bundle-Version: 1.2.0
Bundle-Activator: de.jcup.egradle.eclipse.gradleeditor.Activator
Bundle-Vendor: Albert Tregnaghi
Require-Bundle: org.eclipse.ui,
Expand All @@ -15,7 +15,7 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.core.resources,
org.eclipse.ui.ide,
org.eclipse.core.filesystem,
de.jcup.egradle.eclipse.plugin.main;bundle-version="1.1.4"
de.jcup.egradle.eclipse.plugin.main;bundle-version="1.2.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy
Import-Package: de.jcup.egradle.eclipse.api,
Expand Down
2 changes: 1 addition & 1 deletion egradle-plugin-gradle-editor/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<p>
<img alt="EGradle editor" src="egradle-banner_128x128.png"></img>
</p>
<p>Version: 1.1.4</p>
<p>Version: 1.2.0</p>
<p>Copyright: Albert Tregnaghi</p>
<p>License: <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0</a><p>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
package de.jcup.egradle.eclipse.gradleeditor.document;
/*
* Copyright 2016 Albert Tregnaghi
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
*
*/
package de.jcup.egradle.eclipse.gradleeditor.document;

public class GradlePartionerFactory {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
package de.jcup.egradle.eclipse.gradleeditor.document;
/*
* Copyright 2016 Albert Tregnaghi
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
*
*/
package de.jcup.egradle.eclipse.gradleeditor.document;

import org.eclipse.jface.text.rules.FastPartitioner;
import org.eclipse.jface.text.rules.IPartitionTokenScanner;
Expand Down
4 changes: 2 additions & 2 deletions egradle-plugin-junit-contribution/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: EGradle Junit contribution
Bundle-SymbolicName: de.jcup.egradle.eclipse.plugin.junit.contribution;singleton:=true
Bundle-Version: 1.1.4
Bundle-Version: 1.2.0
Bundle-Activator: de.jcup.egradle.eclipse.junit.contribution.Activator
Bundle-Vendor: Albert Tregnaghi
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.jdt.core,
org.eclipse.jdt.junit,
de.jcup.egradle.eclipse.plugin.main;bundle-version="1.1.4",
de.jcup.egradle.eclipse.plugin.main;bundle-version="1.2.0",
org.eclipse.core.resources,
org.eclipse.debug.core,
org.eclipse.debug.ui,
Expand Down
2 changes: 1 addition & 1 deletion egradle-plugin-junit-contribution/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<p>
<img alt="EGradle junit contribution plugin" src="egradle-banner_128x128.png"></img>
</p>
<p>Version: 1.1.4</p>
<p>Version: 1.2.0</p>
<p>Copyright: Albert Tregnaghi</p>
<p>License: <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0</a><p>

Expand Down
2 changes: 1 addition & 1 deletion egradle-plugin-main/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: EGradle
Bundle-SymbolicName: de.jcup.egradle.eclipse.plugin.main;singleton:=true
Bundle-Version: 1.1.4
Bundle-Version: 1.2.0
Bundle-Activator: de.jcup.egradle.eclipse.Activator
Bundle-Vendor: Albert Tregnaghi
Require-Bundle: org.eclipse.ui,
Expand Down
2 changes: 1 addition & 1 deletion egradle-plugin-main/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<p>
<img alt="EGradle main plugin" src="icons/egradle-banner_128x128.png"></img>
</p>
<p>Version: 1.1.4</p>
<p>Version: 1.2.0</p>
<p>Copyright: Albert Tregnaghi</p>
<p>License: <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0</a><p>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
package de.jcup.egradle.eclipse.api;
/*
* Copyright 2016 Albert Tregnaghi
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
*
*/
package de.jcup.egradle.eclipse.api;

public interface PreferenceIdentifiable {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
package de.jcup.egradle.eclipse.api;
/*
* Copyright 2016 Albert Tregnaghi
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
*
*/
package de.jcup.egradle.eclipse.api;

public interface PreferenceLabeled {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
package de.jcup.egradle.eclipse.filehandling;
/*
* Copyright 2016 Albert Tregnaghi
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
*
*/
package de.jcup.egradle.eclipse.filehandling;

import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IProject;
Expand Down
Binary file modified egradle-updatesite/artifacts.jar
Binary file not shown.
Binary file modified egradle-updatesite/content.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions egradle-updatesite/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
<feature url="features/de.jcup.egradle.eclipse.feature_1.1.4.jar" id="de.jcup.egradle.eclipse.feature" version="1.1.4">
<category name="site.egradle.category.stable"/>
</feature>
<feature url="features/de.jcup.egradle.eclipse.feature_1.2.0.jar" id="de.jcup.egradle.eclipse.feature" version="1.2.0">
<category name="site.egradle.category.stable"/>
</feature>
<category-def name="site.egradle.category.beta" label="EGradle Beta Versions">
<description>
Beta versions of EGradle
Expand Down

0 comments on commit 4e18062

Please sign in to comment.