Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions ReleaseChecklist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ Releasing Core:
-------------------------------------------------------------------------------
Releasing the Eclipse Feature:

1. On a linux machine, clone the main repo and checkout the release tag. e.g.:
1. Clone the main repo and checkout the release tag. e.g.:

git clone https://github.com/mybatis/generator.git
cd generator
git checkout mybatis-generator-1.3.3
git checkout mybatis-generator-1.4.1

2. cd eclipse/
3. mvn -Prelease-composite clean integration-test
Expand All @@ -58,5 +58,6 @@ Final Details:
git checkout master
cd eclipse/
mvn tycho-versions:set-version -DnewVersion=1.4.1-SNAPSHOT
git commit -m "Update Eclipse versions for new release" .
git add .
git commit -m "Update Eclipse versions for new release"
git push
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
<url>https://github.com/mybatis/generator/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/mybatis/generator/</url>
<system>Github</system>
<url>https://github.com/mybatis/generator/actions</url>
</ciManagement>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ Bundle-ManifestVersion: 2
Bundle-Name: Tests for MyBatis Generator Eclipse Core Support
Bundle-SymbolicName: org.mybatis.generator.eclipse.core.tests
Bundle-Version: 1.4.2.qualifier
Fragment-Host: org.mybatis.generator.eclipse.core;bundle-version="1.4.1"
Fragment-Host: org.mybatis.generator.eclipse.core;bundle-version="1.4.2"
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: org.hamcrest.core;bundle-version="1.3.0",
org.junit.jupiter.api;bundle-version="5.3.1",
org.junit;bundle-version="4.12.0",
org.mybatis.generator.eclipse.test.utilities;bundle-version="1.4.1"
org.mybatis.generator.eclipse.test.utilities;bundle-version="1.4.2"
Automatic-Module-Name: org.mybatis.generator.eclipse.core.tests
Export-Package: org.mybatis.generator.eclipse.core.tests,
org.mybatis.generator.eclipse.core.tests.callback,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Bundle-SymbolicName: org.mybatis.generator.eclipse.core
Bundle-Version: 1.4.2.qualifier
Bundle-Vendor: mybatis.org
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: org.mybatis.generator.core;bundle-version="1.4.0";visibility:=reexport,
Require-Bundle: org.mybatis.generator.core;bundle-version="1.4.2";visibility:=reexport,
org.eclipse.jdt.core;bundle-version="3.16.0",
org.eclipse.jface.text;bundle-version="3.15.0",
org.eclipse.core.resources;bundle-version="3.13.200",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: Test Utilities Tests
Bundle-SymbolicName: org.mybatis.generator.eclipse.test.utilities.tests
Bundle-Version: 1.4.2.qualifier
Fragment-Host: org.mybatis.generator.eclipse.test.utilities;bundle-version="1.4.1"
Fragment-Host: org.mybatis.generator.eclipse.test.utilities;bundle-version="1.4.2"
Automatic-Module-Name: org.mybatis.generator.eclipse.test.utilities.tests
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: org.junit.jupiter.api;bundle-version="5.3.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Automatic-Module-Name: org.mybatis.generator.eclipse.test.utilities
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: org.hamcrest.core;bundle-version="1.3.0",
org.eclipse.jdt.core;bundle-version="3.16.0",
org.mybatis.generator.eclipse.core;bundle-version="1.4.1"
org.mybatis.generator.eclipse.core;bundle-version="1.4.2"
Export-Package: org.mybatis.generator.eclipse.test,
org.mybatis.generator.eclipse.test.matchers,
org.mybatis.generator.eclipse.test.matchers.support,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: UI Tests
Bundle-SymbolicName: org.mybatis.generator.eclipse.ui.tests
Bundle-Version: 1.4.2.qualifier
Fragment-Host: org.mybatis.generator.eclipse.ui;bundle-version="1.4.1"
Fragment-Host: org.mybatis.generator.eclipse.ui;bundle-version="1.4.2"
Automatic-Module-Name: org.mybatis.generator.eclipse.ui.tests
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: org.junit.jupiter.api;bundle-version="5.3.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Require-Bundle: org.eclipse.ui;bundle-version="3.111.0",
org.eclipse.core.runtime;bundle-version="3.15.100",
org.apache.ant;bundle-version="1.10.5",
org.eclipse.ant.core;bundle-version="3.5.200",
org.mybatis.generator.eclipse.core;bundle-version="1.4.0",
org.mybatis.generator.eclipse.core;bundle-version="1.4.2",
org.eclipse.jdt.core;bundle-version="3.16.0",
org.eclipse.core.resources;bundle-version="3.13.200",
org.eclipse.ui.ide;bundle-version="3.14.200",
Expand Down