Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
R
RMIModelServer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
monticore
EmbeddedMontiArc
simulators
RMIModelServer
Commits
15ac1432
Commit
15ac1432
authored
Aug 29, 2019
by
Evgeny Kusmenko
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'basic-simulator' into 'master'
Repackaging + Using new Hardware Emulator package See merge request
!9
parents
03c51cc4
efb812c1
Pipeline
#177781
failed with stage
in 1 minute and 31 seconds
Changes
29
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
302 additions
and
394 deletions
+302
-394
.gitignore
.gitignore
+4
-1
.gitlab-ci.yml
.gitlab-ci.yml
+17
-3
docker/Dockerfile
docker/Dockerfile
+3
-17
docker/build.sh
docker/build.sh
+6
-1
docs/latex/emulator_configuration.tex
docs/latex/emulator_configuration.tex
+5
-0
docs/latex/make.bat
docs/latex/make.bat
+6
-1
install/HardwareEmulator.so
install/HardwareEmulator.so
+0
-0
install/config.bat
install/config.bat
+6
-1
install/config.sh
install/config.sh
+6
-2
install/demo/basic-linux.bat
install/demo/basic-linux.bat
+6
-1
install/demo/basic.bat
install/demo/basic.bat
+6
-1
install/demo/no-cache.bat
install/demo/no-cache.bat
+6
-1
install/demo/no-time.bat
install/demo/no-time.bat
+6
-1
install/demo/slow-cpu.bat
install/demo/slow-cpu.bat
+6
-1
install/run.bat
install/run.bat
+8
-2
install/run.sh
install/run.sh
+8
-2
install/run_with_zookeeper.bat
install/run_with_zookeeper.bat
+6
-1
install/run_with_zookeeper.sh
install/run_with_zookeeper.sh
+6
-2
license/se/license.txt
license/se/license.txt
+1
-2
pom.xml
pom.xml
+164
-120
scripts/compile_install.bat
scripts/compile_install.bat
+0
-8
scripts/compile_install.sh
scripts/compile_install.sh
+0
-8
settings.xml
settings.xml
+9
-101
src/main/java/de/rwth/monticore/EmbeddedMontiArc/simulators/rmimodelserver/RMIServer.java
...EmbeddedMontiArc/simulators/rmimodelserver/RMIServer.java
+8
-3
src/main/java/rwth/rmi/model/server/interfaces/RMIManager.java
...ain/java/rwth/rmi/model/server/interfaces/RMIManager.java
+0
-27
src/main/java/simulator/integration/HardwareEmulatorInterface.java
...java/simulator/integration/HardwareEmulatorInterface.java
+0
-85
src/main/resources/HardwareEmulator.dll
src/main/resources/HardwareEmulator.dll
+0
-0
src/main/resources/HardwareEmulator.so
src/main/resources/HardwareEmulator.so
+0
-0
src/test/java/de/rwth/monticore/EmbeddedMontiArc/simulators/rmimodelserver/HardwareEmulatorTest.java
...tiArc/simulators/rmimodelserver/HardwareEmulatorTest.java
+9
-2
No files found.
.gitignore
View file @
15ac1432
...
...
@@ -4,3 +4,6 @@
*.iml
.classpath
/.settings
.vscode/
*.jar
*.dll
\ No newline at end of file
.gitlab-ci.yml
View file @
15ac1432
#
# (c) https://github.com/MontiCore/monticore
#
# The license generally applicable for this project
# can be found under https://github.com/MontiCore/monticore.
#
stages
:
-
build
...
...
@@ -26,9 +30,19 @@ BranchJobLinux:
stage
:
build
image
:
maven:3-jdk-8
before_script
:
-
apt-get update
-
apt-get install libxext6
-
apt update
-
apt --assume-yes install libxext6
-
apt --assume-yes install libxrender1
-
apt --assume-yes install libxtst6
#- apt --assume-yes install realpath
-
"
JAWT_LIB=$(find
/
-name
libjawt.so
-print
-quit)"
-
"
echo
JAWT_LIB:
$JAWT_LIB"
-
"
JAWT_FOLDER=$(dirname
${JAWT_LIB})"
-
"
echo
JAWT_FOLDER:
$JAWT_FOLDER"
-
"
export
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${JAWT_FOLDER}"
script
:
-
mvn -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B clean install --settings settings.xml
except
:
-
master
tags
:
-
se
docker/Dockerfile
View file @
15ac1432
#
# (c) https://github.com/MontiCore/monticore
#
# ******************************************************************************
# MontiCAR Modeling Family, www.se-rwth.de
# Copyright (c) 2017, Software Engineering Group at RWTH Aachen,
# All rights reserved.
#
# This project is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 3.0 of the License, or (at your option) any later version.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this project. If not, see <http://www.gnu.org/licenses/>.
# *******************************************************************************
# The license generally applicable for this project
# can be found under https://github.com/MontiCore/monticore.
#
FROM
openjdk:8
...
...
docker/build.sh
View file @
15ac1432
#!/bin/bash
#
# (c) https://github.com/MontiCore/monticore
#
# The license generally applicable for this project
# can be found under https://github.com/MontiCore/monticore.
#
rm
rmi-model-server-
*
.jar
cp
../target/rmi-model-server-
*
-jar-with-dependencies
.jar ./rmi-model-server.jar
...
...
docs/latex/emulator_configuration.tex
View file @
15ac1432
% (c) https://github.com/MontiCore/monticore
%
% The license generally applicable for this project
% can be found under https://github.com/MontiCore/monticore.
\usepackage
{
graphicx
}
%\usepackage{ngerman}
...
...
docs/latex/make.bat
View file @
15ac1432
@rem (c) https://github.com/MontiCore/monticore
@REM
@REM (c) https://github.com/MontiCore/monticore
@REM
@REM The license generally applicable for this project
@REM can be found under https://github.com/MontiCore/monticore.
@REM
@echo
off
set
GENDIR
=
target
\
...
...
install/HardwareEmulator.so
deleted
100644 → 0
View file @
03c51cc4
File deleted
install/config.bat
View file @
15ac1432
@rem (c) https://github.com/MontiCore/monticore
@REM
@REM (c) https://github.com/MontiCore/monticore
@REM
@REM The license generally applicable for this project
@REM can be found under https://github.com/MontiCore/monticore.
@REM
@REM Please replace this with the path to the Autopilot(s)
set
AUTOPILOT_FOLDER
=
autopilots
...
...
install/config.sh
View file @
15ac1432
#!/bin/bash
#
# (c) https://github.com/MontiCore/monticore
#
# The license generally applicable for this project
# can be found under https://github.com/MontiCore/monticore.
#
# Please replace this with the path to the Autopilot(s)
AUTOPILOT_FOLDER
=
autopilots
...
...
install/demo/basic-linux.bat
View file @
15ac1432
@rem (c) https://github.com/MontiCore/monticore
@REM
@REM (c) https://github.com/MontiCore/monticore
@REM
@REM The license generally applicable for this project
@REM can be found under https://github.com/MontiCore/monticore.
@REM
@echo
off
pushd
..
...
...
install/demo/basic.bat
View file @
15ac1432
@rem (c) https://github.com/MontiCore/monticore
@REM
@REM (c) https://github.com/MontiCore/monticore
@REM
@REM The license generally applicable for this project
@REM can be found under https://github.com/MontiCore/monticore.
@REM
@echo
off
pushd
..
...
...
install/demo/no-cache.bat
View file @
15ac1432
@rem (c) https://github.com/MontiCore/monticore
@REM
@REM (c) https://github.com/MontiCore/monticore
@REM
@REM The license generally applicable for this project
@REM can be found under https://github.com/MontiCore/monticore.
@REM
@echo
off
pushd
..
...
...
install/demo/no-time.bat
View file @
15ac1432
@rem (c) https://github.com/MontiCore/monticore
@REM
@REM (c) https://github.com/MontiCore/monticore
@REM
@REM The license generally applicable for this project
@REM can be found under https://github.com/MontiCore/monticore.
@REM
@echo
off
pushd
..
...
...
install/demo/slow-cpu.bat
View file @
15ac1432
@rem (c) https://github.com/MontiCore/monticore
@REM
@REM (c) https://github.com/MontiCore/monticore
@REM
@REM The license generally applicable for this project
@REM can be found under https://github.com/MontiCore/monticore.
@REM
@echo
off
pushd
..
...
...
install/run.bat
View file @
15ac1432
@rem (c) https://github.com/MontiCore/monticore
@REM
@REM (c) https://github.com/MontiCore/monticore
@REM
@REM The license generally applicable for this project
@REM can be found under https://github.com/MontiCore/monticore.
@REM
@echo
off
call
config
.bat
echo
Starting
RMIModelServer
on
port
%PORT%
with
Autopilot
folder
:
%AUTOPILOT_FOLDER%
java
"-Djava.rmi.server.codebase=file:rmi-model-server.jar"
"-Djava.rmi.server.hostname=localhost"
-cp
rmi
-model-server
.jar
rwth
.rmi.model.server.RMIServer
%PORT%
%AUTOPILOT_FOLDER%
--no-zookeeper
%
*
@REM java "-Djava.rmi.server.codebase=file:rmi-model-server.jar" "-Djava.rmi.server.hostname=localhost" -cp rmi-model-server.jar rwth.rmi.model.server.RMIServer %PORT% %AUTOPILOT_FOLDER% --no-zookeeper %*
java
-jar
rmi
-model-server
.jar
port
=
%PORT%
autopilots_folder
=
%AUTOPILOT_FOLDER%
no
-zookeeper
default_config
%
*
pause
install/run.sh
View file @
15ac1432
#!/bin/bash
#
# (c) https://github.com/MontiCore/monticore
#
# The license generally applicable for this project
# can be found under https://github.com/MontiCore/monticore.
#
source
./config.sh
echo
"Starting RMIModelServer on port
$PORT
with Autopilot folder:
$AUTOPILOT_FOLDER
"
java
"-Djava.rmi.server.codebase=file:rmi-model-server.jar"
"-Djava.rmi.server.hostname=localhost"
-cp
rmi-model-server.jar rwth.rmi.model.server.RMIServer
$PORT
$AUTOPILOT_FOLDER
--no-zookeeper
os
=
linux no_time
# java "-Djava.rmi.server.codebase=file:rmi-model-server.jar" "-Djava.rmi.server.hostname=localhost" -cp rmi-model-server.jar rwth.rmi.model.server.RMIServer $PORT $AUTOPILOT_FOLDER --no-zookeeper os=linux no_time
java
"-Djava.rmi.server.hostname=localhost"
-jar
rmi-model-server.jar
port
=
$PORT
autopilots_folder
=
$AUTOPILOT_FOLDER
no-zookeeper default_config
os
=
linux no_time
\ No newline at end of file
install/run_with_zookeeper.bat
View file @
15ac1432
@rem (c) https://github.com/MontiCore/monticore
@REM
@REM (c) https://github.com/MontiCore/monticore
@REM
@REM The license generally applicable for this project
@REM can be found under https://github.com/MontiCore/monticore.
@REM
@echo
off
call
config
.bat
...
...
install/run_with_zookeeper.sh
View file @
15ac1432
#!/usr/bin/env bash
#
# (c) https://github.com/MontiCore/monticore
#
# The license generally applicable for this project
# can be found under https://github.com/MontiCore/monticore.
#
if
[
-z
"
$1
"
]
;
then
PORT
=
10101
...
...
src/
license/se/license.txt
→
license/se/license.txt
View file @
15ac1432
...
...
@@ -2,4 +2,3 @@
The license generally applicable for this project
can be found under https://github.com/MontiCore/monticore.
\ No newline at end of file
pom.xml
View file @
15ac1432
<!-- (c) https://github.com/MontiCore/monticore -->
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<!--
(c) https://github.com/MontiCore/monticore
The license generally applicable for this project
can be found under https://github.com/MontiCore/monticore.
-->
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
montisim
</groupId>
<artifactId>
rmi-model-server
</artifactId>
<version>
1.1.2
</version>
<version>
1.1.3
</version>
<packaging>
jar
</packaging>
<name>
rmi-model-server
</name>
<properties>
<!-- USE THESE TO SET THE VERSIONS OF THE DEPENDENCIES FOR ALL THE SUB-PROJECTS -->
<commons.version>
1.0.9
</commons.version>
<hardware_emulator.version>
1.0.0
</hardware_emulator.version>
<!-- .. SE-Libraries .................................................. -->
<monticore.version>
4.5.4.08.11.2017
</monticore.version>
<se-commons.version>
1.7.7
</se-commons.version>
...
...
@@ -53,7 +63,12 @@
<dependency>
<groupId>
montisim
</groupId>
<artifactId>
commons
</artifactId>
<version>
1.0.7
</version>
<version>
${commons.version}
</version>
</dependency>
<dependency>
<groupId>
montisim
</groupId>
<artifactId>
hardware_emulator
</artifactId>
<version>
${hardware_emulator.version}
</version>
</dependency>
</dependencies>
...
...
@@ -66,38 +81,19 @@
<version>
2.8.1
</version>
</plugin>
<!--
MontiCore Generation
-->
<!--
Run the tests where the test/resources are located
-->
<plugin>
<groupId>
de.monticore.mojo
</groupId>
<artifactId>
monticore-maven-plugin
</artifactId>
<version>
${monticore.plugin}
</version>
<artifactId>
maven-surefire-plugin
</artifactId>
<version>
3.0.0-M3
</version>
<configuration>
<skip>
false
</skip>
<script>
de/monticore/monticore_noemf.groovy
</script>
<workingDirectory>
${project.basedir}/install
</workingDirectory>
<forkCount>
1
</forkCount>
<reuseForks>
true
</reuseForks>
<argLine>
-Xmx2048m -XX:MaxPermSize=1024m
</argLine>
</configuration>
<dependencies>
<dependency>
<groupId>
org.antlr
</groupId>
<artifactId>
antlr4
</artifactId>
<version>
4.7.1
</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.antlr/antlr4-runtime -->
<dependency>
<groupId>
org.antlr
</groupId>
<artifactId>
antlr4-runtime
</artifactId>
<version>
4.7.1
</version>
</dependency>
</dependencies>
<executions>
<execution>
<goals>
<goal>
generate
</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
Other Configuratio
n -->
<!--
Compiler plugi
n -->
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
${compiler.plugin}
</version>
...
...
@@ -108,6 +104,30 @@
</configuration>
</plugin>
<!-- Shade plugin: Create jar in install folder -->
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-shade-plugin
</artifactId>
<version>
3.1.1
</version>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
shade
</goal>
</goals>
<configuration>
<minimizeJar>
true
</minimizeJar>
<transformers>
<transformer
implementation=
"org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"
>
<mainClass>
de.rwth.monticore.EmbeddedMontiArc.simulators.rmimodelserver.RMIServer
</mainClass>
</transformer>
</transformers>
<outputFile>
${project.basedir}/install/${project.name}.jar
</outputFile>
</configuration>
</execution>
</executions>
</plugin>
<!-- Source Jar Configuration -->
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
...
...
@@ -130,22 +150,22 @@
</execution>
</executions>
</plugin>
<!-- to add copyright information automatically-->
<plugin>
<groupId>
com.mycila
</groupId>
<artifactId>
license-maven-plugin
</artifactId>
<version>
3.0
</version>
<configuration>
<header>
${project.baseUri}/
src/
license/se/license.txt
</header>
<header>
${project.baseUri}/license/se/license.txt
</header>
<properties>
<owner>
Michael von Wenckstern
</owner>
<email>
vonwenckstern@se-rwth.de
</email>
</properties>
<excludes>
<exclude>
**/README
</exclude>
<exclude>
src/test/resources/**
</exclude>
<exclude>
src/main/resources/**
</exclude>
<exclude>
src/license/**
</exclude>
<exclude>
license/se/license.txt
</exclude>
</excludes>
</configuration>
<executions>
...
...
@@ -157,22 +177,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-plugin
</artifactId>
<version>
2.19.1
</version>
<configuration>
<workingDirectory>
${project.basedir}/install
</workingDirectory>
<argLine>
-Djdk.net.URLClassPath.disableClassPathURLCheck=true
</argLine>
</configuration>
</plugin>
<plugin>
<groupId>
org.eluder.coveralls
</groupId>
<artifactId>
coveralls-maven-plugin
</artifactId>
<version>
4.3.0
</version>
<configuration>
</configuration>
<configuration></configuration>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
cobertura-maven-plugin
</artifactId>
...
...
@@ -185,31 +197,63 @@
</configuration>
</plugin>
<plugin>
<artifactId>
maven-assembly-plugin
</artifactId>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
single
</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>
server.rpc.RpcServer
</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>
jar-with-dependencies
</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>
central
</id>
<url>
https://repo1.maven.org/maven2
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
<repository>
<id>
senexus
</id>
<url>
https://nexus.se.rwth-aachen.de/content/groups/public/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
<repository>
<id>
eclipse
</id>
<url>
https://repo.eclipse.org/content/groups/releases/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
<repository>
<id>
jcenter
</id>
<url>
https://jcenter.bintray.com/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
<repository>
<id>
topobyte
</id>
<url>
http://mvn.topobyte.de/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
</repositories>
<!-- == DISTRIBUTION ==================================================== -->
<distributionManagement>
...
...
scripts/compile_install.bat
deleted
100644 → 0
View file @
03c51cc4
@rem (c) https://github.com/MontiCore/monticore
pushd
%~dp0
..
call
mvn
clean
install
-s
"settings.xml"
cd
target
ren
"rmi-model-server-*-jar-with-dependencies.jar"
"rmi-model-server.jar"
copy
"rmi-model-server.jar"
"..\install"
popd
scripts/compile_install.sh
deleted
100644 → 0
View file @
03c51cc4
#!/bin/bash
# (c) https://github.com/MontiCore/monticore
cd
..
mvn clean
install
-s
settings.xml
-DskipTests
cd
target
cp
rmi-model-server-
*
-jar-with-dependencies
.jar ../install/rmi-model-server.jar
settings.xml
View file @
15ac1432
<?xml version="1.0" encoding="UTF-8"?>
<!-- (c) https://github.com/MontiCore/monticore -->
<!--
(c) https://github.com/MontiCore/monticore
The license generally applicable for this project
can be found under https://github.com/MontiCore/monticore.
-->
<settings
xmlns=
"http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
...
...
@@ -61,106 +68,7 @@
</profile>
<profile>
<id>
se-nexus
</id>
<repositories>
<repository>
<id>
central
</id>
<url>
http://central
</url>
<releases><enabled
/></releases>
<snapshots><enabled
/></snapshots>
</repository>
<repository>
<id>
central
</id>
<url>
https://repo1.maven.org/maven2
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
<repository>
<id>
eclipse
</id>
<url>
https://repo.eclipse.org/content/groups/releases/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
<repository>
<id>
jcenter
</id>
<url>
https://jcenter.bintray.com/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
<repository>
<id>
topobyte
</id>
<url>
http://mvn.topobyte.de/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>
central
</id>
<url>
http://central
</url>
<releases><enabled
/></releases>
<snapshots><enabled
/></snapshots>
</pluginRepository>
<pluginRepository>
<id>
central
</id>
<url>
https://repo1.maven.org/maven2
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>
eclipse
</id>
<url>
https://repo.eclipse.org/content/groups/releases/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>
jcenter
</id>
<url>
https://jcenter.bintray.com/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>
topobyte
</id>
<url>
http://mvn.topobyte.de/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
...
...
src/main/java/
rwth/rmi/model/
server/RMIServer.java
→
src/main/java/
de/rwth/monticore/EmbeddedMontiArc/simulators/rmimodel
server/RMIServer.java
View file @
15ac1432
/* (c) https://github.com/MontiCore/monticore */
package
rwth.rmi.model.server
;
/**
* (c) https://github.com/MontiCore/monticore
*
* The license generally applicable for this project
* can be found under https://github.com/MontiCore/monticore.
*/
package
de.rwth.monticore.EmbeddedMontiArc.simulators.rmimodelserver
;