Skip to content

Commit

Permalink
commit for Artifact uploading
Browse files Browse the repository at this point in the history
  • Loading branch information
prabhuprabhakaran committed May 29, 2020
1 parent 0123ba2 commit 38a7ed2
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/target/
/target/
release.properties
4 changes: 4 additions & 0 deletions TO-DO
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
1. Encryption Not Working in JAXB
2. Need to Modularize the Code
3. Reset Button on Filter
4. Try to integrate JAXB and JEazyProps Annotations
57 changes: 52 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.prabhu</groupId>
<artifactId>JEazyProps</artifactId>
<version>1.0</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<url>https://github.com/prabhuprabhakaran/JEazyProps</url>
<inceptionYear>2015</inceptionYear>
Expand Down Expand Up @@ -31,20 +31,32 @@
</developers>

<scm>
<connection>https://github.com/prabhuprabhakaran/JEazyProps.git</connection>
<developerConnection>https://github.com/prabhuprabhakaran/JEazyProps.git</developerConnection>
<connection>scm:git:git://github.com/prabhuprabhakaran/JEazyProps.git</connection>
<developerConnection>scm:git:git@github.com:prabhuprabhakaran/JEazyProps.git</developerConnection>
<url>https://github.com/prabhuprabhakaran/JEazyProps</url>
<tag>HEAD</tag>
</scm>
<!-- <scm>
<connection>scm:git:git://github.com/dexecutor/dexecutor-core.git</connection>
<developerConnection>scm:git:[email protected]:dexecutor/dexecutor-core.git</developerConnection>
<url>https://github.com/dexecutor/dexecutor-core</url>
<tag>HEAD</tag>
</scm>-->

<!-- <scm>
<connection>scm:git:ssh://[email protected]|PROJECT_NAME/hello-world-service-minimal.git</connection>
<developerConnection>scm:git:ssh://[email protected]|PROJECT_NAME/hello-world-service-minimal.git</developerConnection>
<url>http://git-eng.REDACTED.com/PROJECT_NAME/hello-world-service-minimal/tree/master</url>
</scm>-->

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url></url>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url></url>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>

Expand Down Expand Up @@ -139,6 +151,11 @@
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-api</artifactId>
<version>1.11.2</version>
</dependency>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
Expand All @@ -148,4 +165,34 @@
</plugin>
</plugins>
</build>
<profiles>
<!-- GPG Signature on release -->
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import com.prabhu.jeazyprops.utils.encryption.AES;
import com.prabhu.jeazyprops.utils.encryption.Base64;
import com.prabhu.jeazyprops.utils.encryption.Tripledes;
import com.sun.java.swing.plaf.windows.WindowsLookAndFeel;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
Expand All @@ -31,7 +30,6 @@
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
import javax.swing.UnsupportedLookAndFeelException;

/**
* This Class used to create GUI for the Property Bean Object. The Property Bean
Expand Down Expand Up @@ -82,9 +80,14 @@ public final class PropertyDisplayer {
*/
static {
try {
javax.swing.UIManager.setLookAndFeel(new WindowsLookAndFeel());
} catch (UnsupportedLookAndFeelException ex) {
Logger.getLogger(PropertyDisplayer.class.getName()).log(Level.SEVERE, null, ex);
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Windows".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (Exception ex) {

}
}

Expand Down

0 comments on commit 38a7ed2

Please sign in to comment.