All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.litongjava.utils.maven.Dependency Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.litongjava.utils.maven;

import com.thoughtworks.xstream.annotations.XStreamAlias;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * Created by litong on 2018/9/26 0026. jar包依赖 bean
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
@XStreamAlias("dependency")
public class Dependency {
  private String groupId, artifactId, version, jarPath, pomPath;
  
  public Dependency(String groupId, String artifactId, String version) {
    this.groupId=groupId;
    this.artifactId=artifactId;
    this.version=version;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy