Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Java CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B package --file pom.xml
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target/
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.nearinfinity</groupId>
<artifactId>JHexView</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>
6 changes: 4 additions & 2 deletions readme.txt → readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ http://www.the-interweb.com/serendipity/index.php?/archives/96-Hexer-1.0.0.html

Dependencies: https://github.com/sporst/splib

Features:
Features
--------
- Displays binary data in decimal and hexadecimal order
- Support for grouping bytes in columns
- Little endian or Big endian display
Expand All @@ -26,7 +27,8 @@ Features:
external source
- Full control over the display colors

Changes by Argent77:
Changes for NearInfinity by Argent77
------------------------------------
- Included dependencies (splib)
- Added Apache Ant build script
- Find bytes/text support
Expand Down