Skip to content

Commit f56b249

Browse files
committed
Created OSInfo, HWInfo, SecurityTools and WebTools classes instead of packages to improve importing
Renamed StringExpanded2 to StringExpandedFromRegistry Moved tools.osinfo.Enums to just tools.Enums Signed-off-by: Joshua Gager <jlgager@outlook.com>
1 parent 14521f5 commit f56b249

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2517
-1914
lines changed

lib/jna-3.0.9-sources.jar

153 KB
Binary file not shown.

lib/jna-3.0.9.jar

777 KB
Binary file not shown.

lib/jna-4.3.0.jar

923 KB
Binary file not shown.

lib/jna-platform-4.3.0.jar

2.18 MB
Binary file not shown.

pom.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>JavaUltimateTools</groupId>
8+
<artifactId>JavaUltimateTools</artifactId>
9+
<version>1.1-SNAPSHOT</version>
10+
<build>
11+
<plugins>
12+
<plugin>
13+
<groupId>org.apache.maven.plugins</groupId>
14+
<artifactId>maven-compiler-plugin</artifactId>
15+
<configuration>
16+
<source>1.7</source>
17+
<target>1.7</target>
18+
</configuration>
19+
</plugin>
20+
</plugins>
21+
</build>
22+
<dependencies>
23+
<dependency>
24+
<groupId>org.apache.commons</groupId>
25+
<artifactId>commons-lang3</artifactId>
26+
<version>3.5</version>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.jetbrains</groupId>
30+
<artifactId>annotations-java5</artifactId>
31+
<version>RELEASE</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>net.java.dev.jna</groupId>
35+
<artifactId>jna-platform</artifactId>
36+
<version>4.3.0</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>net.java.dev.jna</groupId>
40+
<artifactId>jna</artifactId>
41+
<version>4.3.0</version>
42+
</dependency>
43+
</dependencies>
44+
</project>

src/com/jgcomptech/tools/hwinfo/BIOS.java

Lines changed: 0 additions & 41 deletions
This file was deleted.

src/com/jgcomptech/tools/hwinfo/Network.java

Lines changed: 0 additions & 41 deletions
This file was deleted.

src/com/jgcomptech/tools/hwinfo/OEM.java

Lines changed: 0 additions & 38 deletions
This file was deleted.

src/com/jgcomptech/tools/hwinfo/Processor.java

Lines changed: 0 additions & 77 deletions
This file was deleted.

src/com/jgcomptech/tools/hwinfo/RAM.java

Lines changed: 0 additions & 17 deletions
This file was deleted.

src/com/jgcomptech/tools/hwinfo/Storage.java

Lines changed: 0 additions & 62 deletions
This file was deleted.

src/com/jgcomptech/tools/osinfo/Architecture.java

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)