Skip to content
Snippets Groups Projects
Commit 55752e43 authored by Adam Laskowski's avatar Adam Laskowski
Browse files

SSDM-13365: fixed typos in gradle task names

parent 7fd56f11
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -67,9 +67,9 @@ File -> New -> Project From Existing Sources ...@@ -67,9 +67,9 @@ File -> New -> Project From Existing Sources
Select the gradle folder to load the gradle model Select the gradle folder to load the gradle model
After the model is loaded execute the tasks: After the model is loaded execute the tasks:
openBISDevelopementEnvironmentASPrepare openBISDevelopmentEnvironmentASPrepare
openBISDevelopementEnvironmentASStart openBISDevelopmentEnvironmentASStart
openBISDevelopementEnvironmentDSSStart openBISDevelopmentEnvironmentDSSStart
``` ```
## IntelliJ can't find package com.sun.*, but I can compile the project using the command line! ## IntelliJ can't find package com.sun.*, but I can compile the project using the command line!
...@@ -84,8 +84,8 @@ option for cross-compilation". ...@@ -84,8 +84,8 @@ option for cross-compilation".
2. ./gradlew :bundleOpenbisStaticResources 2. ./gradlew :bundleOpenbisStaticResources
2. Start openBIS in your chosen IDE (NG UI assumes it will run 2. Start openBIS in your chosen IDE (NG UI assumes it will run
at: http://localhost:8888/openbis-test/): at: http://localhost:8888/openbis-test/):
1. run openBISDevelopementEnvironmentASPrepare gradle task 1. run openBISDevelopmentEnvironmentASPrepare gradle task
2. run openBISDevelopementEnvironmentASStart gradle task 2. run openBISDevelopmentEnvironmentASStart gradle task
3. In command line do: 3. In command line do:
1. cd /<OPENBIS_PROJECT_ROOT>/ui-admin 1. cd /<OPENBIS_PROJECT_ROOT>/ui-admin
2. npm install 2. npm install
......
...@@ -123,7 +123,7 @@ task copyTestData(type: Copy, dependsOn: testClasses) { ...@@ -123,7 +123,7 @@ task copyTestData(type: Copy, dependsOn: testClasses) {
include "*.properties" include "*.properties"
} }
task openBISDevelopementEnvironmentASStart(type: JavaExec) { task openBISDevelopmentEnvironmentASStart(type: JavaExec) {
main = 'org.eclipse.jetty.runner.Runner' main = 'org.eclipse.jetty.runner.Runner'
classpath = sourceSets.main.runtimeClasspath + configurations.devRuntime classpath = sourceSets.main.runtimeClasspath + configurations.devRuntime
jvmArgs(['-Dpython.path=../libraries/jython/jython-lib', '-Dlog4j.configuration=etc/log.xml', jvmArgs(['-Dpython.path=../libraries/jython/jython-lib', '-Dlog4j.configuration=etc/log.xml',
......
...@@ -96,7 +96,7 @@ task copyV3Api(type: Copy, dependsOn: [compileGWTToTempJDK11, ':api-openbis-java ...@@ -96,7 +96,7 @@ task copyV3Api(type: Copy, dependsOn: [compileGWTToTempJDK11, ':api-openbis-java
into "${gwtTempPath}/ch.systemsx.cisd.openbis.OpenBIS/resources/api/v3" into "${gwtTempPath}/ch.systemsx.cisd.openbis.OpenBIS/resources/api/v3"
} }
task openBISDevelopementEnvironmentASPrepare(type: Copy, dependsOn: copyV3Api) { task openBISDevelopmentEnvironmentASPrepare(type: Copy, dependsOn: copyV3Api) {
from "${gwtTempPath}/ch.systemsx.cisd.openbis.OpenBIS" from "${gwtTempPath}/ch.systemsx.cisd.openbis.OpenBIS"
into "targets/www/openbis-test" into "targets/www/openbis-test"
} }
...@@ -118,7 +118,7 @@ jar { ...@@ -118,7 +118,7 @@ jar {
} }
} }
task openBISDevelopementEnvironmentDSSStart(type: JavaExec) { task openBISDevelopmentEnvironmentDSSStart(type: JavaExec) {
main = 'ch.systemsx.cisd.openbis.dss.generic.DataStoreServer' main = 'ch.systemsx.cisd.openbis.dss.generic.DataStoreServer'
classpath = sourceSets.datastoreExec.runtimeClasspath classpath = sourceSets.datastoreExec.runtimeClasspath
jvmArgs(['-ea', '-Dpython.path=../libraries/jython/jython-lib', jvmArgs(['-ea', '-Dpython.path=../libraries/jython/jython-lib',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment