有时,我们需要将源代码与编译的Java字节一起打包到一个jar文件中码。 例如,Eclipse IDE可能需要源代码的jar文件来显示源代码。
它对于使用我们部署的项目进行源代码级调试的开发人员也很有用。
“maven-source"插件可以打包源代码并与我们的项目一起部署。
在“pom.xml"文件中添加“maven-source"插件。
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.java2s.ide</groupId> <artifactId>xmlFileEditor</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>xmlFileEditor</name> <url>http://maven.apache.org</url> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>
发出“mvn install"打包并将我们的项目部署到本地存储库。
c:mvn_testxmlFileEditor>mvn install
在 Java Web 开发中, 一般更新了 Java 文件后要手动重启 Tomcat 服务器, 才能生效, 浪费不少生命啊, 自从有了 JRebel 这神器...
Eclipse 创建 Java 接口打开新建 Java 接口向导新建 Java 接口向导可以创建新的 Java 接口。打开向导的方式有:点击 File 菜单并...
8.15.1. 数组类型的定义8.15.2. 数组值输入8.15.3. 访问数组8.15.4. 修改数组8.15.5. 在数组中搜索8.15.6. 数组输入和输出语法Po...
DROP TYPE — 移除一个数据类型大纲DROP TYPE [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]描述 DROP TYPE移除一种用户定...