Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

Commit

Permalink
Rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
jachinte committed Oct 4, 2017
1 parent 03cfe88 commit cc7bf23
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion examples/frascati-helloworld-rmi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</description>

<properties>
<mainClass>org.amelia.dsl.examples.frascati.demo.Deployment</mainClass>
<mainClass>org.amelia.dsl.examples.ubuntu.frascati.demo.Deployment</mainClass>
<host>localhost</host>
<privileged-user>root</privileged-user>
<unprivileged-user>${user.name}</unprivileged-user>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package org.amelia.dsl.examples.frascati
package org.amelia.dsl.examples.ubuntu.frascati

import java.util.concurrent.atomic.AtomicBoolean
import static extension org.amelia.dsl.examples.Util.warn

includes org.amelia.dsl.examples.frascati.Java1_6u23
includes org.amelia.dsl.examples.ubuntu.frascati.Java1_6u23

/*
* Installs FraSCAti 1.4 with enhanced binaries.
Expand All @@ -29,7 +29,7 @@ subsystem FraSCAti {
var String binary = 'https://github.com/jachinte/frascati-binaries/raw/master/frascati'

on hosts {
verification: org.amelia.dsl.examples.frascati.Java1_6u23.configuration;
verification: org.amelia.dsl.examples.ubuntu.frascati.Java1_6u23.configuration;
// Install FraSCAti unless it is already installed
(cmd 'frascati --version').fallback [ install.set(true) ]
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.amelia.dsl.examples.frascati
package org.amelia.dsl.examples.ubuntu.frascati

import org.amelia.dsl.lib.descriptors.Host
import java.util.concurrent.atomic.AtomicBoolean
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package org.amelia.dsl.examples.frascati.demo
package org.amelia.dsl.examples.ubuntu.frascati.demo

import org.amelia.dsl.lib.descriptors.Host
import org.amelia.dsl.lib.util.Log

depends on org.amelia.dsl.examples.frascati.FraSCAti
depends on org.amelia.dsl.examples.frascati.demo.Server
depends on org.amelia.dsl.examples.ubuntu.frascati.FraSCAti
depends on org.amelia.dsl.examples.ubuntu.frascati.demo.Server

/*
* Compiles and executes the helloworld-rmi Client component.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package org.amelia.dsl.examples.frascati.demo
package org.amelia.dsl.examples.ubuntu.frascati.demo

includes org.amelia.dsl.examples.frascati.FraSCAti
includes org.amelia.dsl.examples.frascati.demo.Server
includes org.amelia.dsl.examples.frascati.demo.Client
includes org.amelia.dsl.examples.ubuntu.frascati.FraSCAti
includes org.amelia.dsl.examples.ubuntu.frascati.demo.Server
includes org.amelia.dsl.examples.ubuntu.frascati.demo.Client

/*
* Simple deployment to run the FraSCAti helloworld-rmi project.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package org.amelia.dsl.examples.frascati.demo
package org.amelia.dsl.examples.ubuntu.frascati.demo

import org.amelia.dsl.lib.descriptors.Host

depends on org.amelia.dsl.examples.frascati.FraSCAti
depends on org.amelia.dsl.examples.ubuntu.frascati.FraSCAti

/*
* Compiles and executes the helloworld-rmi Server component.
Expand Down

0 comments on commit cc7bf23

Please sign in to comment.