EL 2.1 的 Maven 依赖项

发布于 2024-12-13 02:35:39 字数 70 浏览 0 评论 0原文

我想添加 EL 2.1 的 Maven 依赖项,提供与 tomcat 6 一起使用的范围,但找不到它,有什么想法可以下载它吗?

i want to add the maven dependency for EL 2.1 with scope provided to be used with tomcat 6 but couldn't find it, any ideas where i can download it ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

守望孤独 2024-12-20 02:35:39

有一个特殊的 tomcat 版本的 el-api:

<dependency>
    <groupId>org.apache.tomcat</groupId>
    <artifactId>el-api</artifactId>
    <version>6.0.35</version>
    <scope>provided</scope>
</dependency>

不幸的是源代码不在中央,请使用:

<repository>
    <id>intersult-repo</id>
    <name>Intersult Repository</name>
    <url>http://intersult.com/public/maven</url>
</repository>

There is a special tomcat version of el-api:

<dependency>
    <groupId>org.apache.tomcat</groupId>
    <artifactId>el-api</artifactId>
    <version>6.0.35</version>
    <scope>provided</scope>
</dependency>

Unfornately the source isn't in central, use:

<repository>
    <id>intersult-repo</id>
    <name>Intersult Repository</name>
    <url>http://intersult.com/public/maven</url>
</repository>
水波映月 2024-12-20 02:35:39

http://search.maven.org/#search%7Cga%7C1%7Cel

天啊..我对此投了反对票,尽管它就在那里。详细

http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22javax.el%22%20AND%20a%3A%22el-api%22

或完全完成你的所有工作

<dependency>
    <groupId>javax.el</groupId>
    <artifactId>el-api</artifactId>
    <version>2.2</version>\
    <scope>provided</scope>
</dependency>

请注意,这是在中央,它是 2.2。因为 2.1 在最终版本时发布为 2.2..

http://search.maven.org/#search%7Cga%7C1%7Cel

Jeez.. I got a downvote for that although it is right there. In detail

http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22javax.el%22%20AND%20a%3A%22el-api%22

or completely done all your work

<dependency>
    <groupId>javax.el</groupId>
    <artifactId>el-api</artifactId>
    <version>2.2</version>\
    <scope>provided</scope>
</dependency>

Note that this is in central and it is 2.2. because 2.1 was released as 2.2 when it went final..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文