代码之家  ›  专栏  ›  技术社区  ›  andor kesselman

Maven公司。google无法解析为键入

  •  0
  • andor kesselman  · 技术社区  · 6 年前

    Maven新手。我使用Maven构建了我的项目,并生成Protobuf可执行文件,并为我的项目生成源代码。我正在使用eclipse并用Java进行编译。我似乎没有正确导入库,因此在通过eclipse查看生成的代码时会出现很多错误。

    我收到错误 Maven com.google cannot be resolved to type

    我看了很多建议,似乎找不到解决这个问题的方法。从我的想法来看,我的构建路径似乎是正确的。

    <?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.henosisknot.com</groupId>
    <version>0.1.0</version>
    <name>ChatBot-Henosisknot</name>
    <url>henosisknot.com</url>
    <description>Chatbot for henosisknot.com</description>
    <artifactId>Chatbot-Henosisknot</artifactId>
    <packaging>pom</packaging>
    <profiles>
        <profile>
            <modules>
                    <module>com</module>
            </modules>
          </profile>
    </profiles>
    <organization>
        <name>Henosisknot.com</name> 
     </organization>
    
    <properties>
    
    <!-- protobuf paths -->
    <protobuf.input.directory>${project.basedir}/src/main/java/com/proto</protobuf.input.directory>
    <protobuf.output.directory>${project.basedir}/src/</protobuf.output.directory>
    <project.build.dir>${project.basedir}/build</project.build.dir>
    
    <!-- library versions -->
    <build-helper-maven-plugin.version>1.9.1</build-helper-maven-plugin.version>
    <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version>
    <maven-dependency-plugin.version>2.10</maven-dependency-plugin.version>
    <maven-shade-plugin.version>2.4.2</maven-shade-plugin.version>
    <os-maven-plugin.version>1.4.1.Final</os-maven-plugin.version>
    <protobuf.version>3.0.0</protobuf.version>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    
    </properties>
    
    
    <dependencies>
    
        <dependency>
            <groupId>com.google.protobuf</groupId>
            <artifactId>protobuf-java</artifactId>
            <version>3.0.0</version>
        </dependency>
    
    </dependencies>
    
    
     <build>
        <extensions>
        <!-- provides os.detected.classifier (i.e. linux-x86_64, osx-x86_64) property -->
            <extension>
                <groupId>kr.motd.maven</groupId>
                <artifactId>os-maven-plugin</artifactId>
                <version>${os-maven-plugin.version}</version>
            </extension>
        </extensions>
    
        <directory>${project.build.dir}/classes</directory>
        <outputDirectory>/users/andor/workspace/Chatbot-Henosisknot/build/classes</outputDirectory>
    
        <plugins>
            <!-- copy protoc binary into build directory -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>${maven-dependency-plugin.version}</version>
                <executions>
                    <execution>
                        <id>copy-protoc</id>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>copy</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>com.google.protobuf</groupId>
                                    <artifactId>protoc</artifactId>
                                    <version>${protobuf.version}</version>
                                    <classifier>${os.detected.classifier}</classifier>
                                    <type>exe</type>
                                    <overWrite>true</overWrite>
                                    <outputDirectory>${project.build.dir}</outputDirectory>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <!-- compile proto buffer files using copied protoc binary -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>${maven-antrun-plugin.version}</version>
                <executions>
                    <execution>
                        <id>exec-protoc</id>
                        <phase>generate-sources</phase>
                        <configuration>
                            <target>
                                <property name="protoc.filename" value="protoc-${protobuf.version}-${os.detected.classifier}.exe"/>
                                <property name="protoc.filepath" value="${project.build.dir}/${protoc.filename}"/>
                                <chmod file="${protoc.filepath}" perm="ugo+rx"/>
                                <mkdir dir="${protobuf.output.directory}" />
                                <path id="protobuf.input.filepaths.path">
                                    <fileset dir="${protobuf.input.directory}">
                                        <include name="**/*.proto"/>
                                    </fileset>
                                </path>
                                <pathconvert pathsep=" " property="protobuf.input.filepaths" refid="protobuf.input.filepaths.path"/>
                                <exec executable="${protoc.filepath}" failonerror="true">
                                    <arg value="-I"/>
                                    <arg value="${protobuf.input.directory}"/>
                                    <arg value="--java_out"/>
                                    <arg value="${protobuf.output.directory}"/>
                                    <arg line="${protobuf.input.filepaths}"/>
                                </exec>
                            </target>
                        </configuration>
                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
            <groupId>org.xolstice.maven.plugins</groupId>
            <artifactId>protobuf-maven-plugin</artifactId>
            <version>0.5.0</version>
            <configuration>
              <protocExecutable>/usr/local/bin/protoc</protocExecutable>
            </configuration>
            <executions>
              <execution>
                <goals>
                  <goal>compile</goal>
                  <goal>test-compile</goal>
                </goals>
              </execution>
            </executions>
            </plugin>
            <plugin>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>2.0.2</version>
                    <configuration>
                        <includes>
                            <include>**/com/**</include>
                        </includes>
                    </configuration>
            </plugin>
               <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>2.1</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                        <configuration>
                            <transformers>
                                <transformer
                                    implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                    <mainClass>main.java.com.chatbot.Main</mainClass>
                                </transformer>
                            </transformers>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
              <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.2.1</version>
                <configuration>
                    <mainClass>com.chatbot.Main</mainClass>
                </configuration>
        </plugin>
        </plugins>
    </build>
    

    1 回复  |  直到 6 年前
        1
  •  1
  •   Steve C    6 年前

    Apache Maven需要记住的一点是,其设计中的一个关键原则是“约定优先于配置”的原则。这意味着,如果我们坚持maven惯例,那么我们的pom。xml文件变得更小、更简单。

    而你似乎已经配置好了自己的麻烦。构建的关键元素包括:

    • 您正在构建一个jar文件
    • 它包含您编写的类
    • 它包含将从生成的类。源目录树中的proto文件。

    构建正确类型的工件

    在构建jar文件时,pom应该正确声明打包:

    <packaging>jar</packaging>
    

    处理。proto消息文件

    现在,我将集中精力处理您的。proto文件,因为这似乎是目前给您带来最大麻烦的地方。

    必要时安装protoc

    它首先需要的是 protoc 可执行文件。 您的样品pom。上面的xml都是从maven存储库下载版本到 ${project.build.dir} ,又名 target 目录 正在尝试使用 /usr/local/bin/protoc 出于同样的目的。 你可能会也可能不会真的有后者。如果没有,则:

    如果您的 目标 目录包含 protoc-3.5.1-1-osx-x86_64.exe 然后我们可以使用它,否则:

    1. 将浏览器指向 search.maven.org ;
    2. 搜索 com.google.protobuf ;
    3. 单击 protoc公司 链接并直接下载所需的版本。

    然后:

    1. 将下载的工件复制到 /usr/local/bin/
    2. 将其重命名为 protoc公司
    3. 使其可执行:

      chmod a+x protoc

    设置protobuf maven插件

    您已经发现 protobuf-maven-plugin 。 设置此设置是解决遗留问题的关键。

    按照惯例,它希望找到您的。proto文件位于:

    src/
      main/
        proto/
    

    下面是一个传统的java包结构。因此:

    移动。将proto文件保存到此位置。

    你的 protobuf-maven-plugin 配置正常,但我怀疑您不需要:

     <goal>test-compile</goal>
    

    线

    最后步骤

    最后,您应该完全删除 maven-compiler-plugin 公告 请记住,maven约定将用于正确设置。

    protoc公司 现在已手动安装,我们可以从pom文件中删除一些大块XML:

    <description>ffffff</description>
    <artifactId>fffffff</artifactId>
    
    <!-- you're building a jar -->
    <packaging>jar</packaging>
    
    <!-- the profiles section was meaningless -->
    
    <organization>
        <name>fffff</name>
    </organization>
    
    <properties>
    
        <!-- protobuf paths -->
        <!-- you were fighting maven with these properties -->
    
        <!-- library versions -->
        <maven-shade-plugin.version>2.4.2</maven-shade-plugin.version>
    
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    
    </properties>
    
    <dependencies>
    
        <dependency>
            <groupId>com.google.protobuf</groupId>
            <artifactId>protobuf-java</artifactId>
            <version>3.0.0</version>
        </dependency>
    
    </dependencies>
    
    <build>
        <plugins>
    
            <plugin>
                <!-- generate java from .proto files -->
                <groupId>org.xolstice.maven.plugins</groupId>
                <artifactId>protobuf-maven-plugin</artifactId>
                <version>0.5.1</version>
                <configuration>
                    <protocExecutable>/usr/local/bin/protoc</protocExecutable>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>compile</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
    
            <!-- maven compiler plugin declaration is usually redundant unless you want a specific version -->
    
            <!-- I have not addressed this... -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                ...
            </plugin>
        </plugins>
    </build>