create user usm identified by pwd default tablespace bh Temporary TABLESPACE Temp; mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.3.0 -Dpackaging=jar -Dfile=ojdbc6.jar mvn install:install-file -Dfile=D:\ojdbc14.jar -DgroupId=ojdbc14 -DartifactId=ojdbc14 -Dversion=10.2.0.3.0 -Dpackaging=jar mvn install:install-file -Dfile=E:\ojdbc14.jar -DgroupId=ojdbc14 -DartifactId=ojdbc14 -Dversion=10.2.0.3.0 -Dpackaging=jar mvn install:install-file -Dfile=E:\ojdbc14.jar -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar maven手动安装jar mvn install:install-file -DgroupId=com.Oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar -D file=C:\ojdbc14.jar <!-- 引入插件编译不过去了添加了一下 --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <!--注意增加这两行,在打包时相关的类会被独立打成jar --> <attachClasses>true</attachClasses> <classesClassifier>api</classesClassifier> </configuration> <version>2.4</version> <executions> </executions> </plugin> </plugins> </build> #################################################################################################### 我的maven项目A依赖于功能小模块B,这个小模块B也是一个maven项目,将A部署到tomcat后,在A中的断点都能正常进去,但是B中的代码就都进不去,而且报source not found 我也遇到这个问题了,最后在工程properties中的 deployment assembly中,add->project,选中你依赖的工程就可以了 2 b依赖a,a项目更改,b项目立即体现 #打所有的jar添加一下就可以 <!-- 自己添加——开始 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2</version> <configuration> <appendAssemblyId>false</appendAssemblyId> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>cn.com.boomhope.bioauth.rmiserver.RmiMain</mainClass> </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>assembly</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1</version> <configuration> <attach>true</attach> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- 自己添加——结束 --> # jkd 1.5 变换 还有一种便捷。自己更新吧 <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </pluginManagement> </build>