You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by of...@apache.org on 2020/07/10 12:22:29 UTC

[incubator-dlab] branch DLAB-1749 created (now d681f82)

This is an automated email from the ASF dual-hosted git repository.

ofuks pushed a change to branch DLAB-1749
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git.


      at d681f82  [DLAB-1749] BE support library installation of particular version

This branch includes the following new commits:

     new d681f82  [DLAB-1749] BE support library installation of particular version

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org


[incubator-dlab] 01/01: [DLAB-1749] BE support library installation of particular version

Posted by of...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ofuks pushed a commit to branch DLAB-1749
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit d681f8245b3a6d42ded393bd38fdc77885bf347f
Author: Oleh Fuks <ol...@gmail.com>
AuthorDate: Fri Jul 10 15:19:01 2020 +0300

    [DLAB-1749] BE support library installation of particular version
---
 .../main/java/com/epam/dlab/dto/exploratory/LibInstallDTO.java    | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/services/dlab-model/src/main/java/com/epam/dlab/dto/exploratory/LibInstallDTO.java b/services/dlab-model/src/main/java/com/epam/dlab/dto/exploratory/LibInstallDTO.java
index bcb452a..1752560 100644
--- a/services/dlab-model/src/main/java/com/epam/dlab/dto/exploratory/LibInstallDTO.java
+++ b/services/dlab-model/src/main/java/com/epam/dlab/dto/exploratory/LibInstallDTO.java
@@ -24,6 +24,8 @@ import com.fasterxml.jackson.annotation.JsonProperty;
 import lombok.Data;
 import lombok.NoArgsConstructor;
 
+import java.util.List;
+
 /**
  * Stores info about libraries.
  */
@@ -49,6 +51,12 @@ public class LibInstallDTO {
 	@JsonProperty
 	private boolean override;
 
+	@JsonProperty("available_versions")
+	private List<String> availableVersions;
+
+	@JsonProperty("add_pkgs")
+	private List<String> transitiveDependencies;
+
 	public LibInstallDTO(String group, String name, String version) {
 		this.group = group;
 		this.name = name;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org