Skip to content
This repository was archived by the owner on Apr 10, 2021. It is now read-only.

Commit d0f80b5

Browse files
committed
v0.1.1
1 parent 828f194 commit d0f80b5

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

.mvn/maven.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
--fail-fast --strict-checksums
1+
--fail-fast --strict-checksums

README.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ A NetBeans IDE plugin supporting the [EditorConfig][] standard.
55
- Supports NetBeans 8 and above
66
- Requires Java 7+
77

8-
[![](https://travis-ci.org/welovecoding/editorconfig-netbeans.svg?branch=master)](https://travis-ci.org/welovecoding/editorconfig-netbeans)
98

10-
[**DOWNLOAD**](https://github.com/welovecoding/editorconfig-netbeans/releases)
9+
10+
1111

1212
## Features
1313

@@ -99,11 +99,27 @@ Read our notes on [Indentation](https://github.com/welovecoding/editorconfig-net
9999

100100
[EditorConfig]: http://editorconfig.org
101101

102-
## Info
102+
## How to use
103103

104104
- A project must be closed and opened after the plugin is installed, to setup hooks for `.editorconfig` files
105105
- Rules are applied when a file (which is matched by a rule) is saved
106106

107+
## Build
108+
109+
### Instructions
110+
111+
```bash
112+
mvn clean install
113+
```
114+
115+
### Releases
116+
117+
- [Release Versions](https://github.com/welovecoding/editorconfig-netbeans/releases)
118+
119+
### Status
120+
121+
[![](https://travis-ci.org/welovecoding/editorconfig-netbeans.svg?branch=master)](https://travis-ci.org/welovecoding/editorconfig-netbeans)
122+
107123
## Disclaimer
108124

109125
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.welovecoding.netbeans.plugin</groupId>
55
<artifactId>editorconfig</artifactId>
6-
<version>0.1.0</version>
6+
<version>0.1.1</version>
77
<packaging>nbm</packaging>
88

99
<name>welovecoding | EditorConfig Plugin</name>

src/main/java/com/welovecoding/nbeditorconfig/options/EditorConfigOptionsPanel.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package com.welovecoding.nbeditorconfig.options;
22

3-
import javax.swing.ComboBoxModel;
4-
53
final class EditorConfigOptionsPanel extends javax.swing.JPanel {
64

75
private static final long serialVersionUID = 6812836508405537948L;

0 commit comments

Comments
 (0)