Skip to content

Commit

Permalink
Merge pull request #22 from adrienlauer/fix-rest-paths
Browse files Browse the repository at this point in the history
Fix rest paths
  • Loading branch information
adrienlauer committed Nov 13, 2015
2 parents 86cca3a + c225666 commit 5bf2148
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 60 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ jdk: oraclejdk8

node_js: "0.12"

before_install: npm install -g bower grunt-cli

notifications:
irc: "chat.freenode.net#seedstack-dev"

cache:
directories:
- "$HOME/.m2/repository"

before_install: npm install -g bower grunt-cli

install:
- rm ~/.m2/settings.xml
- if [ $TRAVIS_PULL_REQUEST = false ] && [ $TRAVIS_BRANCH = master ]; then GOAL=deploy; else GOAL=install; fi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
*
* @author aymen.abbes@ext.mpsa.com
*/
@Path("/jobs")
@Path("/seed-monitoring/jobs")
public class JobResource {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*
* @author aymen.abbes@ext.mpsa.com
*/
@Path("/jobs/{jobName}/job-executions")
@Path("/seed-monitoring/jobs/{jobName}/job-executions")
public class JobExecutionResource {
@Inject
@Named("jobService")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
*
* @author aymen.abbes@ext.mpsa.com
*/
@Path("/jobs/{jobName}/job-instances")
@Path("/seed-monitoring/jobs/{jobName}/job-instances")
public class JobInstanceResource {
/**
* The job service.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*
* @author aymen.abbes@ext.mpsa.com
*/
@Path("/jobs/executions/{jobExecutionId}/steps")
@Path("/seed-monitoring/jobs/executions/{jobExecutionId}/steps")
public class StepExecutionResource {
@Inject
@Named("jobService")
Expand Down
25 changes: 0 additions & 25 deletions bower.json

This file was deleted.

28 changes: 0 additions & 28 deletions package.json

This file was deleted.

2 changes: 1 addition & 1 deletion web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
</goals>
<configuration>
<target>
<copy todir="${project.build.directory}/classes/META-INF/resources/resources/bower_components/w20-monitoring-addon">
<copy todir="${project.build.directory}/classes/META-INF/resources/bower_components/w20-monitoring-addon">
<fileset dir="${project.build.directory}/grunt/bower_components/w20-monitoring-addon" />
</copy>
</target>
Expand Down

0 comments on commit 5bf2148

Please sign in to comment.