This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-jar-plugin</artifactId> | |
| <configuration> | |
| <archive> | |
| <manifest> | |
| <mainClass>com.someclass.Main</mainClass> | |
| <packageName>com.someclass</packageName> | |
| </manifest> | |
| <manifestEntries> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Dependencies: Apache POI Library from http://poi.apache.org/ | |
| */ | |
| package poi_excels; | |
| import java.io.FileInputStream; | |
| import java.io.FileNotFoundException; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.util.logging.Level; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Could not find artifact com.sun:tools:jar:1.5.0 at specified path C:\Program Files\Java\jre6/../lib/tools.jar -> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| org.apache.jasper.JasperException: java.lang.NullPointerException | |
| org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:491) | |
| org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:419) | |
| org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313) | |
| org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260) | |
| javax.servlet.http.HttpServlet.service(HttpServlet.java:717) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- BEGIN dependencies for Tiles --> | |
| <dependency> | |
| <groupId>org.apache.tiles</groupId> | |
| <artifactId>tiles-api</artifactId> | |
| <version>2.2.2</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.tiles</groupId> | |
| <artifactId>tiles-core</artifactId> | |
| <version>2.2.2</version> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -Dcatalina.base=%PATH_TO_TOMCAT_INSTALLATION% | |
| -Dcatalina.home=%PATH_TO_TOMCAT_INSTALLATION% | |
| -Djava.util.logging.config.file=%PATH_TO_TOMCAT_INSTALLATION%\conf\logging.properties" | |
| -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find *some_word_in_filename* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rm -r dir_to_remove |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rm file.txt | |
| rm *common_part_in_filenames* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mv file.txt destination_dir |
NewerOlder