Skip to content
Snippets Groups Projects
Commit e3225fa3 authored by vkovtun's avatar vkovtun
Browse files

SSDM-13579: Separated the new Data Store API scripts from V3 API scripts.

parent 281d29ac
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -94,17 +94,15 @@ task compileGWTToTempJDK11(type: Copy, dependsOn: untarGwt) { ...@@ -94,17 +94,15 @@ task compileGWTToTempJDK11(type: Copy, dependsOn: untarGwt) {
task copyV3Api(type: Copy, dependsOn: [compileGWTToTempJDK11, ':api-openbis-javascript:bundleOpenbisStaticResources']) { task copyV3Api(type: Copy, dependsOn: [compileGWTToTempJDK11, ':api-openbis-javascript:bundleOpenbisStaticResources']) {
from("${project(':api-openbis-javascript').projectDir}/src/v3") from("${project(':api-openbis-javascript').projectDir}/src/v3")
from("${project(':api-data-store-server-javascript').projectDir}/src/js")
into "${gwtTempPath}/ch.systemsx.cisd.openbis.OpenBIS/resources/api/v3" into "${gwtTempPath}/ch.systemsx.cisd.openbis.OpenBIS/resources/api/v3"
} }
task copyV3Api(type: Copy, dependsOn: [compileGWTToTempJDK11, ':api-openbis-javascript:bundleOpenbisStaticResources']) { task copyDataStoreServerApi(type: Copy, dependsOn: [compileGWTToTempJDK11, ':api-openbis-javascript:bundleOpenbisStaticResources']) {
from("${project(':api-openbis-javascript').projectDir}/src/v3")
from("${project(':api-data-store-server-javascript').projectDir}/src/js") from("${project(':api-data-store-server-javascript').projectDir}/src/js")
into "${gwtTempPath}/ch.systemsx.cisd.openbis.OpenBIS/resources/api/v3" into "${gwtTempPath}/ch.systemsx.cisd.openbis.OpenBIS/resources/api/data-store-server"
} }
task openBISDevelopmentEnvironmentASPrepare(type: Copy, dependsOn: [copyV3Api]) { task openBISDevelopmentEnvironmentASPrepare(type: Copy, dependsOn: [copyDataStoreServerApi, 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"
} }
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
onerror="loadError()" onerror="loadError()"
></script> ></script>
<script src="/openbis/resources/api/v3/require.js"></script> <script src="/openbis/resources/api/v3/require.js"></script>
<script src="/openbis/resources/api/v3/server-data-store-facade.js"></script> <script src="/openbis/resources/api/data-store-server/server-data-store-facade.js"></script>
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>
......
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