Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/out/
/nbproject/private/
.nb-gradle/
inputlink.txt

# Compiled class file
*.class
Expand Down
11 changes: 11 additions & 0 deletions 00 - Scripts/script.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#! /bin/bash

xhost +

docker run --rm -it --name coppelia-sim \
-e DISPLAY \
--net=host \
--privileged \
brgsil/ws3d-coppelia

xhost -
61 changes: 61 additions & 0 deletions 0_ - DemoBehaviorNetwork/DemoBNProject/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/dist/
/out/
/nbproject/private/
.nb-gradle/
inputlink.txt

# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/bin/

.classpath
.project
/logCache/
/paramCache/
.gradle/
.settings/

# Miscellaneous
*.lock
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# Visual Studio Code related
.vscode/
/build/

#Exception
!/lib/*.jar
!/gradle/wrapper/*.jar
File renamed without changes.
1 change: 1 addition & 0 deletions 0_ - DemoBehaviorNetwork/DemoBNProject/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# DemoBehaviorNetwork
8 changes: 4 additions & 4 deletions build.gradle → ...ehaviorNetwork/DemoBNProject/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ repositories {
maven {
url "https://github.com/rosjava/rosjava_mvn_repo/raw/master"
}
maven { url 'https://jitpack.io' }
maven {
url 'https://cst-group.github.io/cst-dependencies/maven-repo/'
}
url "https://cst-group.github.io/cst-dependencies/maven-repo/"
}
maven { url 'https://jitpack.io' }
}

dependencies {
implementation 'com.github.CST-Group:cst-desktop:1.1.0'
implementation 'com.github.CST-Group:cst-desktop:f21d7ff'
implementation 'com.github.CST-Group:WS3DProxy:0.0.3'
implementation 'org.json:json:20180813'
testImplementation group: 'junit', name: 'junit', version: '4.10'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions 0_ - DemoBehaviorNetwork/DemoBNProject/settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = 'DemoBehaviorNetwork'
Loading