-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
* Parse Nokia PM XML files * Process files in directory * Update README.md
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
*.class | ||
*.log | ||
.idea | ||
project/target | ||
target |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,26 @@ | ||
# boda-nokiapmdataparser | ||
Parses Nokia PM XML files to csv | ||
|
||
# Usage | ||
``` | ||
usage: java -jar boda-nokiapmdataparser.jar input_file | ||
``` | ||
|
||
|
||
# Download and installation | ||
Download the release from https://github.com/bodastage/boda-nokiapmdataparser/releases | ||
|
||
# Requirements | ||
To run the jar file, you need Java version 1.8 and above. | ||
|
||
# Getting help | ||
To report issues with the application or request new features use the issue [tracker](https://github.com/bodastage/boda-nokiacmdataparser/issues). For help and customizations send an email to info@bodastage.com. | ||
|
||
# Credits | ||
[Bodastage Solutions](http://www.bodastage.com) - info@bodastage.com | ||
|
||
# Contact | ||
For any other concerns apart from issues and feature requests, send an email to info@bodastage.com. | ||
|
||
# Licence | ||
This project is licensed under the Apache 2.0 licence. See LICENCE file for details. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name := "boda-nokiapmdataparser" | ||
|
||
version := "0.1" | ||
|
||
scalaVersion := "2.12.8" | ||
|
||
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.5" | ||
|
||
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % "test" | ||
|
||
libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.6" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9") |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
sbt.version = 1.2.8 |