2

我正在通过本教程学习一些关于 OSGI 的实践https://sites.google.com/site/springosgi/ch01.html

我被困在 1.3 上,当我转到“应用 > 运行”时,我得到构建失败

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 13.741s
[INFO] Finished at: Tue Nov 22 23:16:54 EST 2011
[INFO] Final Memory: 3M/54M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project spring-osgi-tp: Could not resolve dependencies for project org.springframework.osgi:spring-osgi-tp:pom:1.1.3: Could not find artifact org.springframework.osgi:catalina.start.osgi:jar:SNAPSHOT-1.0 in eclipse-repository (http://repo1.maven.org/eclipse/) -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

下载时我收到此警告

[WARNING] The POM for org.springframework.osgi:catalina.start.osgi:jar:SNAPSHOT-1.0 is missing, no dependency information available

我做了一些搜索,发现一个线程似乎在说人工制品在以下仓库中

    <repository>
        <id>i21-s3-osgi-repo</id>
        <name>i21 osgi artifacts repo</name>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
        <url>http://maven.springframework.org/osgi</url>
    </repository>

如果我注释掉有问题的依赖关系,那么它会正确构建,尽管我想随着我在教程中的进一步深入,我将需要这个包来启动 Tomcat,有没有人能在这个领域给我一些指示,因为我对 Spring 和奥斯吉?

4

3 回答 3

0

同样的问题;我下载了catalina.start.osgi_1.0.0.jar 并从本地 repo 中获取。

于 2012-04-17T11:47:17.983 回答
0

您不应该注释掉有问题的依赖项。而是将repository上面指定的内容添加到您的文件settings.xml中,以便在下载依赖项时也会引用它。

此外,不确定它们是否是复制/粘贴错误,但这些行看起来很可疑。

...存储库(http://repo1.maven.org/eclipse/)-> [帮助 1]

这是一个无效的存储库

... start.osgi:jar:SNAPSHOT-1.0 丢失

版本号看起来不对...

于 2011-12-05T07:10:19.243 回答
0

尝试改变

<dependency>
        <groupId>org.springframework.osgi</groupId>
        <artifactId>catalina.start.osgi</artifactId>
        <version>1.0-SNAPSHOT</version>
</dependency>

<dependency>
        <groupId>org.springframework.osgi</groupId>
        <artifactId>catalina.start.osgi</artifactId>
        <version>1.0.0</version>
</dependency>

在文件夹 lib 中找到带有依赖项的 SpringDM 教程下载

将文件 catalina.start.osgi.xxxjar 复制到您的 maven 存储库\org\springframework\catalina.start.osgi\1.0.0

于 2011-12-19T02:37:02.843 回答