Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BIGTOP-4333: Add license info to services #153

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public class ServiceDTO {

private String user;

private String license;

private List<PackageSpecificDTO> packageSpecifics;

private List<ComponentDTO> components;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public class ServiceVO {

private String user;

private String license;

private String stack;

private Boolean restartFlag;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ public class ServiceModel {

private String user;

private String license;

@XmlElementWrapper(name = "package-specifics")
@XmlElements(@XmlElement(name = "package-specific"))
private List<PackageSpecificModel> packageSpecifics;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<desc>Flink is a framework and distributed processing engine for stateful computations over unbounded and bounded data streams.</desc>
<version>1.16.2-1</version>
<user>flink</user>
<license>Apache-2.0</license>

<components>
<component>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<desc>Apache Hadoop Distributed File System.</desc>
<version>3.3.6-1</version>
<user>hadoop</user>
<license>Apache-2.0</license>

<components>
<!-- HDFS Components -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<desc>Apache HBase is the Hadoop database, a distributed, scalable, big data store.</desc>
<version>2.4.17-1</version>
<user>hbase</user>
<license>Apache-2.0</license>

<components>
<component>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
</desc>
<version>3.1.3-1</version>
<user>hive</user>
<license>Apache-2.0</license>

<components>
<component>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
</desc>
<version>2.8.2-1</version>
<user>kafka</user>
<license>Apache-2.0</license>

<components>
<component>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
</desc>
<version>8.11.2-2</version>
<user>solr</user>
<license>Apache-2.0</license>

<components>
<component>
<name>solr_instance</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
</desc>
<version>3.3.4-1</version>
<user>spark</user>
<license>Apache-2.0</license>

<components>
<component>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<desc>Tez is the next generation Hadoop Query Processing framework written on top of YARN.</desc>
<version>0.10.2-1</version>
<user>tez</user>
<license>Apache-2.0</license>

<components>
<component>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
</desc>
<version>3.7.2-1</version>
<user>zookeeper</user>
<license>Apache-2.0</license>

<components>
<component>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
</desc>
<version>2.3.8</version>
<user>seatunnel</user>
<license>Apache-2.0</license>

<components>
<component>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
</desc>
<version>11.4.0</version>
<user>grafana</user>
<license>AGPL-3.0</license>

<components>
<component>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
</desc>
<version>8.0.40</version>
<user>mysql</user>
<license>GPLv2</license>

<components>
<component>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
</desc>
<version>2.54.0</version>
<user>prometheus</user>
<license>Apache-2.0</license>

<components>
<component>
Expand Down
Loading