Skip to content

Commit

Permalink
fix(javadoc): fix invalid javadoc / run javadoc on PRs (#3892)
Browse files Browse the repository at this point in the history
  • Loading branch information
cfieber authored Jul 19, 2019
1 parent fb21d90 commit 8206360
Show file tree
Hide file tree
Showing 12 changed files with 1 addition and 45 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,4 @@

package com.netflix.spinnaker.clouddriver.alicloud;

/**
* @author: luoguan
* @create: 2019-05-16 09:49
*/
public class AliCloudConfigurationProperties {}
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
import com.netflix.spinnaker.clouddriver.model.Cluster;
import java.util.Set;

/**
* @author: luoguan
* @create: 2019-06-18 16:35
*/
public class AliCloudCluster implements Cluster {

private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@
import java.util.List;
import java.util.Map;

/**
* @author: luoguan
* @create: 2019-06-18 16:51
*/
public class AliCloudInstance implements Instance {

private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
import com.netflix.spinnaker.clouddriver.alicloud.AliCloudProvider;
import com.netflix.spinnaker.clouddriver.model.KeyPair;

/**
* @author: luoguan
* @create: 2019-06-11 15:23
*/
public class AliCloudKeyPair implements KeyPair {

String account;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@
import java.util.Map;
import java.util.Set;

/**
* @author: luoguan
* @create: 2019-05-15 11:13
*/
public class AliCloudLoadBalancer implements LoadBalancer {

String account;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@
import com.netflix.spinnaker.clouddriver.model.securitygroups.Rule;
import java.util.Set;

/**
* @author: luoguan
* @create: 2019-06-11 09:29
*/
public class AliCloudSecurityGroup implements SecurityGroup {

String type = AliCloudProvider.ID;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
import java.util.Map;
import java.util.SortedSet;

/**
* @author: luoguan
* @create: 2019-07-12 11:15
*/
public class AliCloudSecurityGroupRule implements Rule {

private String protocol;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@

import com.netflix.spinnaker.clouddriver.model.SecurityGroupSummary;

/**
* @author: luoguan
* @create: 2019-06-11 09:54
*/
public class AliCloudSecurityGroupSummary implements SecurityGroupSummary {

String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@
import java.util.Set;
import lombok.Data;

/**
* @author: luoguan
* @create: 2019-06-18 16:45
*/
@Data
public class AliCloudServerGroup implements ServerGroup {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
import com.netflix.spinnaker.clouddriver.model.Subnet;
import lombok.Data;

/**
* @author: luoguan
* @create: 2019-06-03 14:49
*/
@Data
public class AliCloudSubnet implements Subnet {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
import com.netflix.spinnaker.clouddriver.alicloud.model.alienum.ListenerType;
import lombok.Data;

/**
* @author: luoguan
* @create: 2019-05-10 14:59
*/
@Data
public class Listener {

Expand Down
2 changes: 1 addition & 1 deletion gradle/buildViaTravis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export GRADLE_OPTS="-Xmx1g -Xms1g"

if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
echo -e "Build Pull Request #$TRAVIS_PULL_REQUEST => Branch [$TRAVIS_BRANCH]"
$GRADLE build
$GRADLE build javadoc
elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" == "" ]; then
echo -e 'Build Branch with Snapshot => Branch ['$TRAVIS_BRANCH']'
$GRADLE -Prelease.travisci=true -PbintrayUser="${bintrayUser}" -PbintrayKey="${bintrayKey}" -x test build snapshot --stacktrace
Expand Down

0 comments on commit 8206360

Please sign in to comment.