forked from Revivius/nb-darcula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
180 lines (164 loc) · 9.35 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?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>com.revivius</groupId>
<artifactId>nb-darcula</artifactId>
<version>1.5</version>
<packaging>nbm</packaging>
<name>Darcula LAF for NetBeans</name>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<version>3.13</version>
<extensions>true</extensions>
<configuration>
<author>Revivius</author>
<requiresRestart>true</requiresRestart>
<licenseFile>src/main/resources/LICENSE-2.0.txt</licenseFile>
<licenseName>Apache 2.0</licenseName>
<keystore>keystore/store.jks</keystore>
<keystorealias>Revivius</keystorealias>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<useDefaultManifestFile>true</useDefaultManifestFile>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>lib</id>
<name>lib</name>
<releases>
<enabled>true</enabled>
<checksumPolicy>ignore</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<url>file:///${project.basedir}/lib</url>
</repository>
<repository>
<id>netbeans</id>
<name>Repository hosting NetBeans modules</name>
<url>http://bits.netbeans.org/nexus/content/groups/netbeans</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<!-- Darcula LAF -->
<dependency>
<groupId>com.bulenkov</groupId>
<artifactId>darcula</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-netbeans-swing-plaf</artifactId>
<version>${netbeans.version}</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-modules</artifactId>
<version>${netbeans.version}</version>
</dependency>
<!-- For NbPreferences and Lookup -->
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-util-lookup</artifactId>
<version>${netbeans.version}</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-util</artifactId>
<version>${netbeans.version}</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-netbeans-modules-options-api</artifactId>
<version>${netbeans.version}</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-awt</artifactId>
<version>${netbeans.version}</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-dialogs</artifactId>
<version>${netbeans.version}</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-windows</artifactId>
<version>${netbeans.version}</version>
</dependency>
</dependencies>
<properties>
<netbeans.version>RELEASE80</netbeans.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<description> A NetBeans Look And Feel plugin using Darcula of IntelliJ IDEA.
Wraps <a href="https://github.com/bulenkov/Darcula">Darcula LAF</a> and provides required NetBeans specific customizations. <b>Many thanks to Konstantin Bulenkov for open sourcing original Darcula LAF.</b>
<h2>Change Log</h2>
<h3>[1.5] - 2016-04-09</h3>
<ul>
<li>Hard to read colors in HTML, XHTML, JSP and SQL code completion popups and Apache Conf (.htaccess, .conf) files fixed thank to <b>granella</b>.</li>
<li>Baseline alignment of combo boxes fixed thanks to <b>AlexFalappa</b>. Fix for toggle buttons moved to original Darcula library; they should look OK now in GUI designer too.</li>
<li>Editor tab colors for 'Same background color from the same project' feature (Tools > Options > Appearance > Document Tabs) adjusted to match Darcula LAF.</li>
<li>More color, border and icon enhancements (including background color for tree and tables, border of selected rows, icons in Profiler and C/C++ wizard).</li>
<li>For all addressed issues (14) please see <a href="https://github.com/Revivius/nb-darcula/issues?q=milestone%3Av1.5+is%3Aclosed">Milestone v1.5</a>.</li>
</ul>
<h3>[1.4] - 2016-01-31</h3>
<ul>
<li>Fixed hard to read colors in Code Completion popup (hopefully) for all languages.</li>
<li>Disabled buttons and labels are easier to read.</li>
<li>Fixed default button behavior in dailogs (eg: alt+insert in editor to generate setters and getters).</li>
<li>It is safe to use this plugin in any NetBeans platform application now. Level used to log failed attempts to change hardcoded colors is now INFO and so no error dialog will be displayed at startup.</li>
<li>It is possible to use icon filter to invert icon colors and switch between stretched and non-stretched tabs in Tools > Options > Appearance > Darcula Look And Feel. Thanks to <b>markiewb</b> for the contribution.</li>
<li>Improved icons for JOptionPane, thanks to <b>AlexFalappa</b> and <b>granella</b>.</li>
<li>More color, border and icon enhancements (including NetBeans Task/Issue viewer, submenu icons on MAC, Darcula Editor Theme and others).</li>
<li>For all addressed issues (27) please see <a href="https://github.com/Revivius/nb-darcula/issues?q=milestone%3Av1.4+is%3Aclosed">Milestone v1.4</a>.</li>
</ul>
<h3>[1.3] - 2016-01-24</h3>
<ul>
<li>Bundled 'Darcula' theme (Tools > Options > Fonts&Colors). Plugin will set theme to Darcula during first restart. Many thanks to <b>granella</b> for the theme and helping with packaging it in plugin.</li>
<li>It is possible to specify font type and size within IDE via Tools > Options > Appearance > Darcula Look And Feel. Many thanks to <b>markiewb</b> for implementing this with other font related issues.</li>
<li>More color, border and icon enhancements (including diff, versioning colors and FormDesigner guidelines, new Split Pane UI thanks to <a href="https://github.com/bulenkov/Darcula/pull/5">hudsonb</a>).</li>
<li>For all addressed issues (14) please see <a href="https://github.com/Revivius/nb-darcula/issues?q=milestone%3Av1.3+is%3Aclosed">Milestone v1.3</a>.</li>
</ul>
<h3>[1.2] - 2016-01-19</h3>
<ul>
<li>Fixed dark text in Code Completion popup.</li>
<li>Removed more harsh white borders (including the ones in Options window and sliding buttons). A few remaining (such as the one in Search Results) are hardcoded and I dont know a good way of patching those.</li>
<li>Added a slight margin for buttons.</li>
</ul>
<h3>[1.1] - 2016-01-17</h3>
<ul>
<li>Font size issue fixed. It is now possible to use --fontsize switch (either in conf file or command line) to specify desired font size, default size is 12.</li>
<li>'Darcula for NetBeans' is now in 'Preferred look and feel' drop down as requested (Tools > Options > Appearance > Look and Feel). Plugin will set LAF to Darcula during first restart. After that user can switch LAF without uninstalling/disabling the plugin.</li>
<li>Colors in Options window match properly with LAF.</li>
<li>Many harsh white borders (including the one of search box at top right corner of main window) removed.</li>
<li>Contrasting light versions of most core icons provided (close, slide, minimize, restore etc).</li>
</ul>
<h3>[1.0] - 2016-01-14</h3>
</description>
</project>