Skip to content

Commit

Permalink
and some more refactorings prozessing archives overhowled
Browse files Browse the repository at this point in the history
  • Loading branch information
cecom committed Jan 2, 2017
1 parent e88d6d3 commit 120df88
Show file tree
Hide file tree
Showing 39 changed files with 241 additions and 358 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PArchive;

/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PArchive;

/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PArchive;

/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.Defect;
import com.geewhiz.pacify.model.PArchive;
import com.geewhiz.pacify.model.PFile;
import com.geewhiz.pacify.model.PMarker;
Expand Down Expand Up @@ -88,7 +89,7 @@ public String getDefectMessage() {
}
} else {
if (pFile != null) {
result.append(String.format("\n\t[File=%s]", pFile.getFile().getAbsolutePath()));
result.append(String.format("\n\t[File=%s]", pFile.getRelativePath()));
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PFile;

/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PFile;

/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PFile;

/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PProperty;

public class NoPlaceholderInTargetFileDefect extends DefectException {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PFile;

public class NotReplacedPropertyDefect extends DefectException {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PFile;

public class PlaceholderNotDefinedDefect extends DefectException {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PProperty;

/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PMarker;
import com.geewhiz.pacify.model.PProperty;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PProperty;

public class PropertyNotDefinedInResolverDefect extends DefectException {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PProperty;

public class ResolverDefect extends DefectException {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.geewhiz.pacify.defect;

import com.geewhiz.pacify.defect.DefectException;
import com.geewhiz.pacify.model.PFile;

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

import java.io.File;

import com.geewhiz.pacify.defect.DefectException;

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import com.geewhiz.pacify.commandline.commands.ValidateCommand;
import com.geewhiz.pacify.commandline.commands.ValidateMarkerFilesCommand;
import com.geewhiz.pacify.defect.Defect;
import com.geewhiz.pacify.exceptions.DefectRuntimeException;
import com.geewhiz.pacify.defect.DefectRuntimeException;
import com.geewhiz.pacify.resolver.PropertyResolverModule;
import com.geewhiz.pacify.utils.DefectUtils;
import com.geewhiz.pacify.utils.LoggingUtils;
Expand Down
10 changes: 4 additions & 6 deletions common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,16 @@
<artifactId>pacify.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>

</dependencies>
</project>

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import org.apache.logging.log4j.Logger;

import com.geewhiz.pacify.defect.Defect;
import com.geewhiz.pacify.exceptions.DefectRuntimeException;
import com.geewhiz.pacify.defect.DefectRuntimeException;

/*
* Licensed to the Apache Software Foundation (ASF) under one
Expand Down
Loading

0 comments on commit 120df88

Please sign in to comment.