Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalph Steiner2021-04-26 13:44:32 +0000
committerRalph Steiner2021-04-28 05:56:56 +0000
commit62711bddaa66b7b8ca5d6bfd7b3aa31848855c9c (patch)
treeb0c486ebbc669a841b14eaa260a27eee525928a1
parent1b5ba691a17b4cbc04450a6d3ef40b86a5bc3992 (diff)
downloadorg.eclipse.scout.rt-releases/6.1.x.tar.gz
org.eclipse.scout.rt-releases/6.1.x.tar.xz
org.eclipse.scout.rt-releases/6.1.x.zip
Remove bintray maven repositoryreleases/6.1.x
Change-Id: Ifd173e6be28809304f7ca194d07df7bd5d494291 Signed-off-by: Ralph Steiner <steiner.ralph@gmail.com> Reviewed-on: https://git.eclipse.org/r/c/scout/org.eclipse.scout.rt/+/179835 Tested-by: Ralph Steiner <rst@bsiag.com> Reviewed-by: Ralph Steiner <rst@bsiag.com>
-rw-r--r--org.eclipse.scout.rt.ui.html.scriptprocessor/pom.xml23
-rw-r--r--org.eclipse.scout.rt/pom.xml32
2 files changed, 11 insertions, 44 deletions
diff --git a/org.eclipse.scout.rt.ui.html.scriptprocessor/pom.xml b/org.eclipse.scout.rt.ui.html.scriptprocessor/pom.xml
index 1acf04f7ea..27307382e1 100644
--- a/org.eclipse.scout.rt.ui.html.scriptprocessor/pom.xml
+++ b/org.eclipse.scout.rt.ui.html.scriptprocessor/pom.xml
@@ -1,16 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
- Copyright (c) 2014-2015 BSI Business Systems Integration AG.
- All rights reserved. This program and the accompanying materials
- are made available under the terms of the Eclipse Public License v1.0
- which accompanies this distribution, and is available at
- http://www.eclipse.org/legal/epl-v10.html
-
- Contributors:
- BSI Business Systems Integration AG - initial API and implementation
-
--->
+<!-- Copyright (c) 2014-2015 BSI Business Systems Integration AG. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html Contributors: BSI Business Systems Integration AG - initial API and implementation -->
<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>
@@ -35,6 +24,7 @@
<dependency>
<groupId>com.yahoo.platform.yui</groupId>
<artifactId>yuicompressor</artifactId>
+ <version>2.4.8</version>
<scope>provided</scope>
<exclusions>
<exclusion>
@@ -46,6 +36,8 @@
<dependency>
<groupId>com.asual.lesscss</groupId>
<artifactId>lesscss-engine</artifactId>
+ <!-- hosted at github.com/bsi-software/lesscss-engine -->
+ <version>1.7.4.bsiR03</version>
<scope>provided</scope>
<!-- Do not exclude commons-logging because it is used within sandboxes (see ScriptProcessor). -->
</dependency>
@@ -95,4 +87,11 @@
<!-- primarily for license header generation -->
<inceptionYear>2014</inceptionYear>
+
+ <repositories>
+ <repository>
+ <id>lesscss-engine</id>
+ <url>https://bsi-software.github.io/lesscss-engine/</url>
+ </repository>
+ </repositories>
</project>
diff --git a/org.eclipse.scout.rt/pom.xml b/org.eclipse.scout.rt/pom.xml
index 2793757e95..90abe6835b 100644
--- a/org.eclipse.scout.rt/pom.xml
+++ b/org.eclipse.scout.rt/pom.xml
@@ -449,20 +449,6 @@
<scope>provided</scope>
</dependency>
- <dependency>
- <groupId>com.yahoo.platform.yui</groupId>
- <artifactId>yuicompressor</artifactId>
- <version>2.4.8</version>
- <scope>provided</scope>
- </dependency>
-
- <dependency>
- <groupId>com.asual.lesscss</groupId>
- <artifactId>lesscss-engine</artifactId>
- <version>1.7.4.bsiR02</version>
- <scope>provided</scope>
- </dependency>
-
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
@@ -789,15 +775,6 @@
<name>eclipse-snapshot-repo</name>
<url>https://repo.eclipse.org/content/groups/snapshots/</url>
</repository>
- <!-- Bintray Repository for com.asual.lesscss:lesscss-engine dependency -->
- <repository>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- <id>bintray-bsi-business-systems-integration-ag-scout-eclipse-org</id>
- <name>bintray</name>
- <url>https://dl.bintray.com/bsi-business-systems-integration-ag/scout-eclipse-org</url>
- </repository>
</repositories>
<pluginRepositories>
@@ -815,15 +792,6 @@
<name>eclipse-snapshot-repo</name>
<url>https://repo.eclipse.org/content/groups/snapshots/</url>
</pluginRepository>
- <!-- Bintray Repository for test-release of https://github.com/mojohaus/flatten-maven-plugin/pull/13 -->
- <pluginRepository>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- <id>bintray-bsi-business-systems-integration-ag-scout-eclipse-org</id>
- <name>bintray-plugins</name>
- <url>https://dl.bintray.com/bsi-business-systems-integration-ag/scout-eclipse-org</url>
- </pluginRepository>
</pluginRepositories>
<distributionManagement>

Back to the top