Skip to content

Commit

Permalink
Link to GitHub and Selenium compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ksfx committed Dec 5, 2017
1 parent 1fc6734 commit 682cd80
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 7 deletions.
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
<version>0.0.2-SNAPSHOT</version>
<name>KSFX</name>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.0</version>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
Expand Down Expand Up @@ -90,7 +95,7 @@
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
<version>3.0.2</version>
<version>3.3.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/DemoActivity.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ class DemoActivity implements ActivityExecution

public List<ActivityInstancePersistentData> executeActivity(List<ActivityInstanceParameter> activityInstanceParameters)
{
Map<String, String> persistentData = new HashMap<String, String>();
List<ActivityInstancePersistentData> persistentData = new ArrayList<ActivityInstancePersistentData>();

Console.write("Hello World Activity");

return persistentData;
Expand Down
4 changes: 3 additions & 1 deletion src/main/resources/ch/ksfx/web/components/Layout.tml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="author" content="Kejo Starosta" />
<meta name="description" content="KSFX Data Analysis: Information Retrieval, Sentiment Analysis, Regression and Correlation Analysis." />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
<t:pagetitle/>
</head>
Expand Down Expand Up @@ -54,7 +56,7 @@

<div id="footer">
<div class="container">
<p class="text-muted">Version ${version.versionString} &copy; Kejo Starosta</p>
<p class="text-muted"><a target="_blank" href="http://www.github.com/ksfx" style="color:inherit">Version ${version.versionString}</a> &copy; Kejo Starosta</p>
</div>
</div>

Expand Down
4 changes: 3 additions & 1 deletion src/main/resources/ch/ksfx/web/components/LoginLayout.tml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="author" content="Kejo Starosta" />
<meta name="description" content="KSFX Data Analysis: Information Retrieval, Sentiment Analysis, Regression and Correlation Analysis." />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
<t:pagetitle/>
</head>
Expand All @@ -18,7 +20,7 @@

<div id="footer">
<div class="container">
<p class="text-muted">Version ${version.versionString} &copy; Kejo Starosta</p>
<p class="text-muted"><a target="_blank" href="http://www.github.com/ksfx" style="color:inherit">Version ${version.versionString}</a> &copy; Kejo Starosta</p>
</div>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="author" content="Kejo Starosta" />
<meta name="description" content="KSFX Data Analysis: Information Retrieval, Sentiment Analysis, Regression and Correlation Analysis." />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
<t:pagetitle/>
</head>
Expand Down Expand Up @@ -71,7 +73,7 @@

<div id="footer">
<div class="container">
<p class="text-muted">Version ${version.versionString} &copy; Kejo Starosta</p>
<p class="text-muted"><a target="_blank" href="http://www.github.com/ksfx" style="color:inherit">Version ${version.versionString}</a> &copy; Kejo Starosta</p>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/version.config
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
application.name=${pom.name}
application.version=1.1.1062
application.version=1.1.1096

0 comments on commit 682cd80

Please sign in to comment.