Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
weblab
openaxes
bundle
Commits
238d5b63
Commit
238d5b63
authored
Mar 30, 2015
by
Yann Mombrun
Browse files
RC1 version of the OpenAXES Bundle.
parent
86c3a702
Changes
10
Hide whitespace changes
Inline
Side-by-side
libraries/celery-manager/pom.xml
View file @
238d5b63
...
...
@@ -3,7 +3,7 @@
<groupId>
eu.axes.bundle.servers
</groupId>
<artifactId>
celery-manager
</artifactId>
<version>
1.0.0-
SNAPSHOT
</version>
<version>
1.0.0-
RC1
</version>
<packaging>
jar
</packaging>
...
...
libraries/imsearch-manager/pom.xml
View file @
238d5b63
...
...
@@ -3,7 +3,7 @@
<groupId>
eu.axes.bundle.servers
</groupId>
<artifactId>
imsearch-manager
</artifactId>
<version>
1.0.0-
SNAPSHOT
</version>
<version>
1.0.0-
RC1
</version>
<packaging>
jar
</packaging>
...
...
libraries/imsearch-manager/src/main/java/eu/axes/bundle/server/Imsearch.java
View file @
238d5b63
...
...
@@ -226,7 +226,7 @@ public class Imsearch extends WebLabServer {
@Override
public
boolean
isEnabled
()
{
final
File
binDir
=
new
File
(
this
.
getBinDirectory
(),
this
.
imsearchDirectory
);
return
super
.
isEnabled
()
&&
binDir
.
exists
()
&&
binDir
.
isDirectory
()
&&
binDir
.
listFiles
().
length
>
0
;
return
super
.
isEnabled
()
&&
binDir
.
exists
()
&&
binDir
.
isDirectory
()
&&
(
binDir
.
listFiles
().
length
>
0
)
;
}
...
...
@@ -242,7 +242,7 @@ public class Imsearch extends WebLabServer {
* @param imsearchDirectory
* the cpuvisorDirectory to set
*/
public
void
setImsearchDirectory
(
String
imsearchDirectory
)
{
public
void
setImsearchDirectory
(
final
String
imsearchDirectory
)
{
this
.
imsearchDirectory
=
imsearchDirectory
;
}
...
...
libraries/jetty-manager/pom.xml
View file @
238d5b63
...
...
@@ -3,7 +3,7 @@
<groupId>
eu.axes.bundle.servers
</groupId>
<artifactId>
jetty-manager
</artifactId>
<version>
1.0.0-
SNAPSHOT
</version>
<version>
1.0.0-
RC1
</version>
<packaging>
jar
</packaging>
...
...
libraries/mongodb-manager/pom.xml
View file @
238d5b63
...
...
@@ -3,7 +3,7 @@
<groupId>
eu.axes.bundle.servers
</groupId>
<artifactId>
mongodb-manager
</artifactId>
<version>
1.0.0-
SNAPSHOT
</version>
<version>
1.0.0-
RC1
</version>
<packaging>
jar
</packaging>
...
...
libraries/openaxes-camel/pom.xml
View file @
238d5b63
...
...
@@ -4,7 +4,7 @@
<groupId>
eu.axes.bundle.osgi
</groupId>
<artifactId>
openaxes-camel
</artifactId>
<version>
1.0.0-
SNAPSHOT
</version>
<version>
1.0.0-
RC1
</version>
<packaging>
bundle
</packaging>
<name>
OpenAXES Camel Chains
</name>
...
...
libraries/pastec-manager/pom.xml
View file @
238d5b63
...
...
@@ -3,7 +3,7 @@
<groupId>
eu.axes.bundle.servers
</groupId>
<artifactId>
pastec-manager
</artifactId>
<version>
1.0.0-
SNAPSHOT
</version>
<version>
1.0.0-
RC1
</version>
<packaging>
jar
</packaging>
...
...
libraries/visor-manager/pom.xml
View file @
238d5b63
...
...
@@ -3,7 +3,7 @@
<groupId>
eu.axes.bundle.servers
</groupId>
<artifactId>
visor-manager
</artifactId>
<version>
1.0.0-
SNAPSHOT
</version>
<version>
1.0.0-
RC1
</version>
<packaging>
jar
</packaging>
...
...
libraries/visor-manager/src/main/java/eu/axes/bundle/server/Visor.java
View file @
238d5b63
...
...
@@ -231,7 +231,7 @@ public class Visor extends WebLabServer {
@Override
public
boolean
isEnabled
()
{
final
File
binDir
=
new
File
(
this
.
getBinDirectory
(),
this
.
cpuvisorDirectory
);
return
super
.
isEnabled
()
&&
binDir
.
exists
()
&&
binDir
.
isDirectory
()
&&
binDir
.
listFiles
().
length
>
0
;
return
super
.
isEnabled
()
&&
binDir
.
exists
()
&&
binDir
.
isDirectory
()
&&
(
binDir
.
listFiles
().
length
>
0
)
;
}
...
...
@@ -247,7 +247,7 @@ public class Visor extends WebLabServer {
* @param cpuvisorDirectory
* the cpuvisorDirectory to set
*/
public
void
setCpuvisorDirectory
(
String
cpuvisorDirectory
)
{
public
void
setCpuvisorDirectory
(
final
String
cpuvisorDirectory
)
{
this
.
cpuvisorDirectory
=
cpuvisorDirectory
;
}
...
...
@@ -264,7 +264,7 @@ public class Visor extends WebLabServer {
* @param sourceScript
* the sourceScript to set
*/
public
void
setSourceScript
(
String
sourceScript
)
{
public
void
setSourceScript
(
final
String
sourceScript
)
{
this
.
sourceScript
=
sourceScript
;
}
...
...
@@ -281,7 +281,7 @@ public class Visor extends WebLabServer {
* @param cpuvisorBinScript
* the cpuvisorBinScript to set
*/
public
void
setCpuvisorBinScript
(
String
cpuvisorBinScript
)
{
public
void
setCpuvisorBinScript
(
final
String
cpuvisorBinScript
)
{
this
.
cpuvisorBinScript
=
cpuvisorBinScript
;
}
...
...
pom.xml
View file @
238d5b63
...
...
@@ -3,7 +3,7 @@
<groupId>
eu.axes.bundle
</groupId>
<artifactId>
open-axes
</artifactId>
<version>
1.0.0-
SNAPSHOT
</version>
<version>
1.0.0-
RC1
</version>
<packaging>
pom
</packaging>
...
...
@@ -37,14 +37,14 @@
<axes.research.path>
axes-research-${axes.research.version}
</axes.research.path>
<limas.web.version>
3.0.4
</limas.web.version>
<limas.indexer.version>
3.0.4
</limas.indexer.version>
<visor.indexer.version>
1.4.0
-SNAPSHOT
</visor.indexer.version>
<visor.indexer.version>
1.4.0
</visor.indexer.version>
<shot.extractor.version>
1.2.2
</shot.extractor.version>
<video.normaliser.version>
1.2.2
</video.normaliser.version>
<gate.extraction.version>
2.5.3
</gate.extraction.version>
<xml.repository.version>
1.4.0
</xml.repository.version>
<metadata.enricher.version>
2.3.3
</metadata.enricher.version>
<file.exposer.version>
1.2.0
</file.exposer.version>
<image.classifier.version>
1.0.2
-SNAPSHOT
</image.classifier.version>
<image.classifier.version>
1.0.2
</image.classifier.version>
<sphinx.recognition.version>
1.1.1
</sphinx.recognition.version>
<pastec.indexer.version>
0.2.0
</pastec.indexer.version>
</properties>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment