Skip to content

Commit

Permalink
refactor package
Browse files Browse the repository at this point in the history
  • Loading branch information
anthunt committed Oct 18, 2019
1 parent 83a94cd commit e3715e7
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>anthunt.aws</groupId>
<artifactId>aws-exporter</artifactId>
<version>2.0.3-RELEASE</version>
<version>2.1.0-SNAPSHOT</version>

<name>aws-exporter</name>

Expand Down Expand Up @@ -168,7 +168,7 @@
<configuration>
<archive>
<manifest>
<mainClass>anthunt.aws.exporter.Installer</mainClass>
<mainClass>anthunt.aws.exporter.install.Installer</mainClass>
</manifest>
</archive>
<descriptors>
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/anthunt/aws/exporter/AWSExportStarter.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
package anthunt.aws.exporter;

import com.amazonaws.regions.Regions;

import anthunt.aws.exporter.model.AmazonAccess;
import anthunt.aws.exporter.model.CrossAccountRole;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/anthunt/aws/exporter/AWSExporter.java
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@
import com.amazonaws.services.s3.model.SourceSelectionCriteria;
import com.amazonaws.services.s3.model.SseKmsEncryptedObjects;
import com.amazonaws.services.s3.model.TagSet;

import anthunt.aws.exporter.model.AmazonAccess;
import anthunt.poi.helper.XSSFHelper;

public class AWSExporter
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/anthunt/aws/exporter/AmazonClients.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
import com.amazonaws.services.securitytoken.model.AssumeRoleResult;
import com.amazonaws.services.securitytoken.model.Credentials;

import anthunt.aws.exporter.model.AmazonAccess;
import anthunt.aws.exporter.model.CrossAccountRole;

public class AmazonClients
{
public AmazonEC2 AmazonEC2;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package anthunt.aws.exporter;
package anthunt.aws.exporter.install;

import org.eclipse.aether.AbstractRepositoryListener;
import org.eclipse.aether.RepositoryEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package anthunt.aws.exporter;
package anthunt.aws.exporter.install;

import java.io.File;
import java.io.FileNotFoundException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package anthunt.aws.exporter;
package anthunt.aws.exporter.model;

import java.util.HashMap;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package anthunt.aws.exporter;
package anthunt.aws.exporter.model;

public class CrossAccountRole {

Expand Down

0 comments on commit e3715e7

Please sign in to comment.