Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ProB Rodin Plugin
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
ProB Rodin Plugin
Commits
2f5e04da
Commit
2f5e04da
authored
13 years ago
by
birkhoff
Browse files
Options
Downloads
Patches
Plain Diff
minor bug fix when version numbers are fallowed by a '>'
parent
344313e1
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
build.gradle
+1
-1
1 addition, 1 deletion
build.gradle
tycho_build.gradle
+5
-2
5 additions, 2 deletions
tycho_build.gradle
with
6 additions
and
3 deletions
build.gradle
+
1
−
1
View file @
2f5e04da
groupID
=
"de.prob"
groupID
=
"de.prob"
features
=
[
"de.prob2.feature"
]
// must be the same as the folder name Please remember to add '../' if necessary
features
=
[
"de.prob2.feature"
]
// must be the same as the folder name Please remember to add '../' if necessary
descriptions
=
[[
"
../
de.prob2.feature"
:
"ProB Rodin Plugin"
],[
"
../
de.prob2.feature"
:
"""ProB is an animator and model checker for the B-Method. It allows
descriptions
=
[[
"de.prob2.feature"
:
"ProB Rodin Plugin"
],[
"de.prob2.feature"
:
"""ProB is an animator and model checker for the B-Method. It allows
fully automatic animation of many B specifications, and can be
fully automatic animation of many B specifications, and can be
used to systematically check a specification for errors.
used to systematically check a specification for errors.
Part of the research and development was conducted within the
Part of the research and development was conducted within the
...
...
This diff is collapsed.
Click to expand it.
tycho_build.gradle
+
5
−
2
View file @
2f5e04da
...
@@ -126,6 +126,7 @@ subprojects {
...
@@ -126,6 +126,7 @@ subprojects {
if
(
it
==~
/.+version.+qualifier.+/
){
if
(
it
==~
/.+version.+qualifier.+/
){
versionNumber
=
it
.
substring
(
15
,
it
.
size
()-
1
)
versionNumber
=
it
.
substring
(
15
,
it
.
size
()-
1
)
versionNumber
=
versionNumber
.
replace
(
'"'
,
''
)
// possibile error: cuts off first 15 chars and leaves out last '"'
// possibile error: cuts off first 15 chars and leaves out last '"'
/* Version Number is taken from Feature.xml
/* Version Number is taken from Feature.xml
...
@@ -212,6 +213,8 @@ task createRepository() << {
...
@@ -212,6 +213,8 @@ task createRepository() << {
printFileLine
=
{
printFileLine
=
{
if
(
it
==~
/.+version.+qualifier.+/
){
if
(
it
==~
/.+version.+qualifier.+/
){
featureVersionNumber
=
it
.
substring
(
15
,
it
.
size
()-
1
)
featureVersionNumber
=
it
.
substring
(
15
,
it
.
size
()-
1
)
featureVersionNumber
=
featureVersionNumber
.
replace
(
'"'
,
''
)
// possibile error: cuts off first 15 chars and leaves out last '"'
// possibile error: cuts off first 15 chars and leaves out last '"'
/* Version Number is taken from Feature.xml
/* Version Number is taken from Feature.xml
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment