Skip to content

Commit

Permalink
Update build-info and bamboo core (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
yahavi authored Dec 13, 2023
1 parent 603dd54 commit 52c8d31
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 16 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</scm>

<properties>
<bamboo.version>9.3.0</bamboo.version>
<bamboo.version>9.3.3</bamboo.version>
<bamboo.data.version>${bamboo.version}</bamboo.data.version>
<!-- This key is used to keep the consistency between the key in atlassian-plugin.xml and the key to generate bundle. -->
<atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key>
Expand All @@ -40,8 +40,8 @@
<maven.compiler.target>1.8</maven.compiler.target>
<!--Skip integration tests unless explicitly requested with -DskipITs=false-->
<skipITs>true</skipITs>
<buildinfo.version>2.39.9</buildinfo.version>
<buildinfo.gradle.version>4.31.9</buildinfo.gradle.version>
<buildinfo.version>2.41.8</buildinfo.version>
<buildinfo.gradle.version>4.33.7</buildinfo.gradle.version>
</properties>

<profiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected void reportUsage(ServerConfig serverConfig, String taskName, Log log)
UsageReporter usageReporter = new UsageReporter("bamboo-artifactory-plugin/" + Utils.getPluginVersion(pluginAccessor), featureIdArray);

try {
usageReporter.reportUsage(serverConfig.getUrl(), serverConfig.getUsername(), serverConfig.getPassword(), "", null, log);
usageReporter.reportUsage(serverConfig.getUrl(), serverConfig.getUsername(), serverConfig.getPassword(), "", null, null, log);
log.info("Usage info sent successfully.");
} catch (Exception ex) {
log.info("Failed sending usage report to Artifactory: " + ex);
Expand Down
6 changes: 0 additions & 6 deletions src/main/java/org/jfrog/bamboo/util/generic/GenericData.java
Original file line number Diff line number Diff line change
@@ -1,25 +1,19 @@
package org.jfrog.bamboo.util.generic;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import org.jfrog.build.extractor.ci.BuildInfo;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

import static org.jfrog.build.api.BuildBean.ROOT;

/**
* This class goal is to represent JSON structure that will be share between
* the Generic Resolve and Generic Deploy tasks.
*
* @author Lior Hasson
*/

@XStreamAlias(ROOT)
public class GenericData implements Serializable {

@XStreamAlias("build")
private List<BuildInfo> builds;

public List<BuildInfo> getBuilds() {
Expand Down
6 changes: 0 additions & 6 deletions src/main/resources/Third-Parties-Usage.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@
<td width="33%"><b>Third party URL</b></td>
<td width="33%"><b>Licensed under</b></td>
</tr>
<tr>
<td>XStream Core</td>
<td><p><a href=http://xstream.codehaus.org>http://xstream.codehaus.org</a></p></td>
<td>BSD License <p><a href=http://www.opensource.org/licenses/bsd-license.php>http://www.opensource.org/licenses/bsd-license.php</a>
</p></td>
</tr>
<tr>
<td>Commons Codec</td>
<td><p><a href=http://commons.apache.org/codec/>http://commons.apache.org/codec/</a></p></td>
Expand Down

0 comments on commit 52c8d31

Please sign in to comment.