Skip to content

Commit 67fb131

Browse files
RobTerpilowskiRobTerpilowski
authored andcommitted
Updated project properties and included license
1 parent 31e6c72 commit 67fb131

3 files changed

Lines changed: 58 additions & 5 deletions

File tree

nbactions.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<actions>
3+
<action>
4+
<actionName>build</actionName>
5+
<packagings>
6+
<packaging>*</packaging>
7+
</packagings>
8+
<goals>
9+
<goal>install</goal>
10+
</goals>
11+
</action>
12+
<action>
13+
<actionName>build-with-dependencies</actionName>
14+
<reactor>also-make</reactor>
15+
<packagings>
16+
<packaging>*</packaging>
17+
</packagings>
18+
<goals>
19+
<goal>install</goal>
20+
</goals>
21+
</action>
22+
</actions>

pom.xml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.lynden</groupId>
55
<artifactId>JavaFxPropertyHelperNBPlugin</artifactId>
6-
<version>1.1.0</version>
6+
<version>1.1.1</version>
77
<packaging>nbm</packaging>
88
<licenses>
99
<license>
@@ -18,17 +18,23 @@
1818
<plugin>
1919
<groupId>org.codehaus.mojo</groupId>
2020
<artifactId>nbm-maven-plugin</artifactId>
21-
<version>3.13</version>
21+
<version>3.14.1</version>
2222
<extensions>true</extensions>
23-
<configuration/>
23+
<configuration>
24+
<author>Rob Terpilowski</author>
25+
<licenseName>MIT License</licenseName>
26+
<licenseFile>LICENSE</licenseFile>
27+
<keystore>mykeystore</keystore>
28+
<keystorealias>myself</keystorealias>
29+
</configuration>
2430
</plugin>
2531
<plugin>
2632
<groupId>org.apache.maven.plugins</groupId>
2733
<artifactId>maven-compiler-plugin</artifactId>
2834
<version>2.5.1</version>
2935
<configuration>
30-
<source>1.7</source>
31-
<target>1.7</target>
36+
<source>1.8</source>
37+
<target>1.8</target>
3238
</configuration>
3339
</plugin>
3440
<plugin>

src/main/resources/license.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Copyright (c) 2015 Lynden, Inc.
2+
3+
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
13+
14+
The above copyright notice and this permission notice shall be included in
15+
all copies or substantial portions of the Software.
16+
17+
18+
19+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25+
THE SOFTWARE.

0 commit comments

Comments
 (0)