Skip to content

Commit

Permalink
WIP 14
Browse files Browse the repository at this point in the history
  • Loading branch information
stempler committed Aug 15, 2024
1 parent 9a21998 commit 3cbc9f2
Show file tree
Hide file tree
Showing 1,256 changed files with 717 additions and 24,733 deletions.
4 changes: 4 additions & 0 deletions app/plugins/eu.esdihumboldt.hale.app.transform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,21 @@ hale {
}

dependencies {
implementation libs.groovy.json

implementation libs.guava
implementation libs.joda.time

implementation libs.eclipse.core.runtime
implementation libs.igd.eclipse.util

implementation project(':common:plugins:eu.esdihumboldt.hale.common.app')
implementation project(':common:plugins:eu.esdihumboldt.hale.common.headless')
implementation project(':common:plugins:eu.esdihumboldt.hale.common.align')
implementation project(':common:plugins:eu.esdihumboldt.hale.common.instance')

implementation project(':util:plugins:eu.esdihumboldt.util')
implementation project(':util:plugins:eu.esdihumboldt.util.cli')
implementation project(':util:plugins:eu.esdihumboldt.util.http')
implementation project(':util:plugins:eu.esdihumboldt.util.groovy')
implementation project(':util:plugins:eu.esdihumboldt.util.groovy.sandbox')
Expand Down
1 change: 1 addition & 0 deletions buildSrc/src/main/groovy/HaleProjectExtension.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ class HaleProjectExtension {
String bundleVendor = null
String privatePackage = null
String exportPackage = null
boolean registeredBuddies = false
}
5 changes: 5 additions & 0 deletions buildSrc/src/main/groovy/hale.common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ repositories {
url 'https://repo.osgeo.org/repository/release/'
}

// deegree repository
maven {
url 'https://repo.deegree.org/content/groups/public'
}

mavenCentral()
}

Expand Down
6 changes: 6 additions & 0 deletions buildSrc/src/main/groovy/hale.library-conventions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,12 @@ jar {
'Export-Package': ep
)
}

if (project.hale.registeredBuddies) {
bnd(
'Eclipse-BuddyPolicy': 'registered'
)
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ dependencies {

implementation libs.guava

implementation libs.igd.eclipse.util

implementation project(':common:plugins:eu.esdihumboldt.hale.common.align')
implementation project(':common:plugins:eu.esdihumboldt.hale.common.align.merge')
implementation project(':common:plugins:eu.esdihumboldt.hale.common.headless')
Expand Down
4 changes: 4 additions & 0 deletions common/plugins/eu.esdihumboldt.hale.common.cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,17 @@ dependencies {
implementation libs.guava
implementation libs.joda.time

implementation libs.groovy.cli
implementation libs.picocli

implementation libs.eclipse.core.runtime

implementation project(':common:plugins:eu.esdihumboldt.hale.common.align')
implementation project(':common:plugins:eu.esdihumboldt.hale.common.core')
implementation project(':common:plugins:eu.esdihumboldt.hale.common.headless')

implementation project(':app:plugins:eu.esdihumboldt.hale.app.transform')

implementation project(':util:plugins:eu.esdihumboldt.util')
implementation project(':util:plugins:eu.esdihumboldt.util.cli')
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ hale {
dependencies {
implementation libs.groovy.core

implementation project(':util:plugins:eu.esdihumboldt.util.config')
api project(':util:plugins:eu.esdihumboldt.util.config')

implementation project(':common:plugins:eu.esdihumboldt.hale.common.core')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@ hale {
dependencies {
implementation testLibs.junit4

implementation libs.groovy.core

implementation libs.guava

implementation project(':common:plugins:eu.esdihumboldt.hale.common.cli')
implementation project(':common:plugins:eu.esdihumboldt.hale.common.core')
implementation project(':common:plugins:eu.esdihumboldt.hale.common.headless')

api project(':util:plugins:eu.esdihumboldt.util.test')
}
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/*
* Copyright (c) 2018 wetransform GmbH
*
*
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the License,
* or (at your option) any later version.
*
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution. If not, see <http://www.gnu.org/licenses/>.
*
*
* Contributors:
* wetransform GmbH <http://www.wetransform.to>
*/
Expand All @@ -26,13 +26,14 @@
import eu.esdihumboldt.hale.common.cli.HaleCLIUtil;
import eu.esdihumboldt.hale.common.core.io.supplier.DefaultInputSupplier;
import eu.esdihumboldt.hale.common.headless.impl.ProjectTransformationEnvironment;
import eu.esdihumboldt.util.test.AbstractPlatformTest;

/**
* Base class for tests working with loaded transformation projects.
*
*
* @author Simon Templer
*/
public abstract class AbstractProjectTest {
public abstract class AbstractProjectTest extends AbstractPlatformTest {

/**
* Cache of loaded projects
Expand All @@ -49,7 +50,7 @@ public ProjectTransformationEnvironment load(URI key) throws Exception {

/**
* Load a transformation project.
*
*
* @param uri the project location
* @return the loaded project
* @throws IOException if loading the project fails
Expand All @@ -61,7 +62,7 @@ private static ProjectTransformationEnvironment loadProject(URI uri) throws IOEx

/**
* Get a loaded transformation project.
*
*
* @param location the project location
* @return the loaded project
* @throws Exception if loading the project fails
Expand Down

This file was deleted.

28 changes: 0 additions & 28 deletions common/plugins/eu.esdihumboldt.hale.common.test.allure/.project

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 3cbc9f2

Please sign in to comment.