Compare commits

...

3 Commits

3 changed files with 17 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
<artifactId>studio-tacokit-dependencies</artifactId>
<packaging>pom</packaging>
<properties>
<tacokit.components.version>1.22.0-SNAPSHOT</tacokit.components.version>
<tacokit.components.version>1.23.0-SNAPSHOT</tacokit.components.version>
</properties>
<repositories>
<repository>

View File

@@ -46,6 +46,11 @@
<artifactId>plexus-utils</artifactId>
<version>3.0.24</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
@@ -63,6 +68,11 @@
<artifactId>maven-shared-utils</artifactId>
<version>3.3.3</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
@@ -117,6 +127,11 @@
<artifactId>commons-compress</artifactId>
<version>1.19</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>

View File

@@ -42,7 +42,7 @@ public class DynamicContentProviderGeneric extends DynamicContentProvider {
if (PluginChecker.isStudioLite()) {
branding = "LITE";
} else {
System.getProperty("talend.license.branding");
branding = System.getProperty("talend.license.branding");
if (branding == null || "".equals(branding)) {
branding = dBranding;
}