File tree Expand file tree Collapse file tree 6 files changed +67
-2
lines changed
src/main/java/blue/orchestra/editor/blueSynthBuilder
src/main/java/blue/ui/editor/csound/orc Expand file tree Collapse file tree 6 files changed +67
-2
lines changed Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ 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" >
4+ <modelVersion >4.0.0</modelVersion >
5+ <parent >
6+ <groupId >com.kunstmusik</groupId >
7+ <artifactId >blue-parent</artifactId >
8+ <version >2.9.1-SNAPSHOT</version >
9+ </parent >
10+ <artifactId >blue-ext-commons-text</artifactId >
11+ <packaging >nbm</packaging >
12+ <build >
13+ <plugins >
14+ <plugin >
15+ <groupId >org.apache.netbeans.utilities</groupId >
16+ <artifactId >nbm-maven-plugin</artifactId >
17+ <configuration >
18+ <publicPackages >
19+ <publicPackage >org.apache.commons.text</publicPackage >
20+ <publicPackage >org.apache.commons.text.*</publicPackage >
21+ </publicPackages >
22+ </configuration >
23+
24+ </plugin >
25+ <plugin >
26+ <groupId >org.apache.maven.plugins</groupId >
27+ <artifactId >maven-jar-plugin</artifactId >
28+ <configuration >
29+ <archive >
30+ <manifestFile >
31+ ${project.build.outputDirectory} /META-INF/MANIFEST.MF
32+ </manifestFile >
33+ </archive >
34+ </configuration >
35+ </plugin >
36+ </plugins >
37+ </build >
38+ <dependencies >
39+ <dependency >
40+ <groupId >org.netbeans.api</groupId >
41+ <artifactId >org-netbeans-api-annotations-common</artifactId >
42+ <version >${netbeans.version} </version >
43+ </dependency >
44+ <dependency >
45+ <groupId >org.apache.commons</groupId >
46+ <artifactId >commons-text</artifactId >
47+ <version >1.10.0</version >
48+ <type >jar</type >
49+ </dependency >
50+ </dependencies >
51+ <properties >
52+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
53+ </properties >
54+ </project >
Original file line number Diff line number Diff line change 140140 <artifactId >blue-ext-commons-lang3</artifactId >
141141 <version >${project.version} </version >
142142 </dependency >
143+ <dependency >
144+ <groupId >com.kunstmusik</groupId >
145+ <artifactId >blue-ext-commons-text</artifactId >
146+ <version >${project.version} </version >
147+ </dependency >
143148 <dependency >
144149 <groupId >com.kunstmusik</groupId >
145150 <artifactId >blue-ext-commons-io</artifactId >
Original file line number Diff line number Diff line change 1111import java .awt .event .KeyEvent ;
1212import javax .swing .text .BadLocationException ;
1313import javax .swing .text .JTextComponent ;
14- import org .apache .commons .lang3 .StringEscapeUtils ;
14+ import org .apache .commons .text .StringEscapeUtils ;
1515import org .netbeans .api .editor .completion .Completion ;
1616import org .netbeans .spi .editor .completion .CompletionItem ;
1717import org .netbeans .spi .editor .completion .CompletionTask ;
Original file line number Diff line number Diff line change 5454 <artifactId >blue-ext-commons-lang3</artifactId >
5555 <version >${project.version} </version >
5656 </dependency >
57+ <dependency >
58+ <groupId >com.kunstmusik</groupId >
59+ <artifactId >blue-ext-commons-text</artifactId >
60+ <version >${project.version} </version >
61+ </dependency >
5762 <dependency >
5863 <groupId >org.netbeans.api</groupId >
5964 <artifactId >org-netbeans-api-templates</artifactId >
Original file line number Diff line number Diff line change 1212import javax .swing .text .BadLocationException ;
1313import javax .swing .text .Document ;
1414import javax .swing .text .JTextComponent ;
15- import org .apache .commons .lang3 .StringEscapeUtils ;
15+ import org .apache .commons .text .StringEscapeUtils ;
1616import org .netbeans .api .editor .completion .Completion ;
1717import org .netbeans .spi .editor .completion .CompletionItem ;
1818import org .netbeans .spi .editor .completion .CompletionResultSet ;
Original file line number Diff line number Diff line change 8484 <module >blue-ext-exml</module >
8585 <module >blue-ext-jython</module >
8686 <module >blue-ext-commons-lang3</module >
87+ <module >blue-ext-commons-text</module >
8788 <module >blue-ext-commons-io</module >
8889 <module >blue-ext-openjfx</module >
8990 <module >blue-utilities</module >
You can’t perform that action at this time.
0 commit comments