Skip to content

Commit

Permalink
version 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
urmi-21 committed Feb 20, 2020
1 parent 6fe666e commit bd174c1
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 39 deletions.
74 changes: 40 additions & 34 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,40 @@
# Contributing

Before contributing to this project please discuss the suggested changes via issues or email.
To contribute to MetaOmGraph, please fork this repository, make changes and then send a pull request.
Please note that this project is released with a Contributor [Code of Conduct](https://github.com/urmi-21/MetaOmGraph/blob/master/CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.


# Getting Started
Here, information is provided for contributers who would like to contribute to MetaOmGraph.


## Cloning MetaOmGraph
To download the code please clone MetaOmGraph's repository using the command:

```
git clone https://github.com/urmi-21/MetaOmGraph.git
```
## Accessing the code
Eclipse IDE is suggested to open the MetaOmGraph project.

## Dependencies
* Install Java version 8 from [here](https://www.oracle.com/technetwork/java/javase/downloads/index.html). After installing add JDK 8 to MOG project in eclipse.
See this [link](https://stackoverflow.com/questions/13635563/setting-jdk-in-eclipse) for help.
* All dependencies are handeled through Maven (see [pom.xml](https://github.com/urmi-21/MetaOmGraph/blob/tomvn/pom.xml))
* Download `l2fprod-common-all.jar` from [here](http://www.java2s.com/Code/Jar/l/Downloadl2fprodcommonalljar.htm) and add to build path
* Add src/libs/CustomBrowserLauncher.jar to the build path



## Running
The main class is _MetaOmGraph_. Run the _MetaOmGraph.java_ project to start MetaOmGraph.

## Getting help
Please contact the developers through [email](http://metnetweb.gdcb.iastate.edu/MetNet_MetaOmGraph_download.php) if any help is required regarding setting up MetaOmGraph.
# Contributing

Before contributing to this project please discuss the suggested changes via issues or email.
To contribute to MetaOmGraph, please fork this repository, make changes and then send a pull request.
Please note that this project is released with a Contributor [Code of Conduct](https://github.com/urmi-21/MetaOmGraph/blob/master/CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.


# Getting Started
Here, information is provided for contributers who would like to contribute to MetaOmGraph.


## Cloning MetaOmGraph
To download the code please clone MetaOmGraph's repository using the command:

```
git clone https://github.com/urmi-21/MetaOmGraph.git
```
## Accessing the code
Eclipse IDE is suggested to open the MetaOmGraph project.

## Dependencies
* Install Java version 8 from [here](https://www.oracle.com/technetwork/java/javase/downloads/index.html). After installing add JDK 8 to MOG project in eclipse.
See this [link](https://stackoverflow.com/questions/13635563/setting-jdk-in-eclipse) for help.
* All dependencies are handeled through Maven (see [pom.xml](https://github.com/urmi-21/MetaOmGraph/blob/tomvn/pom.xml))
* Download `l2fprod-common-all.jar` from [here](http://www.java2s.com/Code/Jar/l/Downloadl2fprodcommonalljar.htm)
* Add src/libs/CustomBrowserLauncher.jar and `l2fprod-common-all.jar` locally maven by running:
```
mvn install:install-file -Dfile='l2fprod-common-all.jar' -DgroupId='com.l2fprod' -DartifactId='l2fprod-common-all' -Dversion='0.1' -Dpackaging=jar -DgeneratePom=true
mvn install:install-file -Dfile='CustomBrowserLauncher.jar' -DgroupId='edu.iastate.metnet' -DartifactId='custombrowserlauncher' -Dversion='0.0.1' -Dpackaging=jar -DgeneratePom=true
```




## Running
The main class is _MetaOmGraph_. Run the _MetaOmGraph.java_ project to start MetaOmGraph.

## Getting help
Please contact the developers through [email](http://metnetweb.gdcb.iastate.edu/MetNet_MetaOmGraph_download.php) if any help is required regarding setting up MetaOmGraph.
31 changes: 30 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
<modelVersion>4.0.0</modelVersion>
<groupId>metaomgraph4</groupId>
<artifactId>metaomgraph4</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<version>1.8.1</version>


<build>
<sourceDirectory>src</sourceDirectory>
<resources>
Expand All @@ -25,8 +28,23 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>edu.iastate.metnet.metaomgraph.MetaOmGraph</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>

</build>

<dependencies>
<dependency>
<groupId>com.apple</groupId>
Expand Down Expand Up @@ -98,5 +116,16 @@
<artifactId>javax.activation</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>edu.iastate.metnet</groupId>
<artifactId>custombrowserlauncher</artifactId>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>com.l2fprod</groupId>
<artifactId>l2fprod-common-all</artifactId>
<version>0.1</version>
</dependency>
</dependencies>

</project>
4 changes: 2 additions & 2 deletions releasenotes.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
MOG 1.8.1 Release date: TBD
MOG 1.8.1 Release date: 02/20/2020
Convert to maven project
Remove unwanted packages
Removed arrayexpress projects
Fix bug; showed incorrect number of metadata file rows.
Make OpenJDK compatible
Fix import metadata freeze on systems using java 13
Refactor

MOG 1.8.0 Release date: 10/28/2019
Expand Down
4 changes: 2 additions & 2 deletions src/edu/iastate/metnet/metaomgraph/MetaOmGraph.java
Original file line number Diff line number Diff line change
Expand Up @@ -391,8 +391,8 @@ public static int getDefaultLineWidth() {
}

/////////////////////
private static final String VERSION = "1.8.0";
private static final String DATE = "October 28, 2019";
private static final String VERSION = "1.8.1";
private static final String DATE = "February 20, 2020";

public static String getVersion() {
return VERSION;
Expand Down

0 comments on commit bd174c1

Please sign in to comment.