dependency-management

Playframework [1.2.7] dependencies failing

眉间皱痕 提交于 2019-12-02 08:03:41
We're experiencing a problem with play frameworks dependency management which was working fine a couple of days ago. We haven't made any configuration changes or changes to the dependency file but are getting the following errors on both our build server and locally (both located on different networks and ISP's). :: problems summary :: :::: WARNINGS module not found: vsvr1#minifymod;1.0.9 ==== vsvr1: tried -- artifact vsvr1#minifymod;1.0.9!minifymod.jar: https://github.com/maklemenz/minifymod/raw/master/dist/minifymod-1.0.9.zip [NOT FOUND ] play#recaptcha;1.3!recaptcha.zip(jar) (139ms) ====

Xcode 4: Project does not honor $(inherited) Build Setting in Workspace?

痞子三分冷 提交于 2019-12-02 07:37:24
问题 Today is my day to suffer through Xcode 4, Workspaces, and Projects. I have a workspace with a few open source libraries (openssl, sqlcipher, and a couple of others). Within the workspace there is one "Main" project which produces an EXE as a target. The open source projects are "subprojects" or "child projects" to the "Main" project. It looks similar to below: Main Project +- OpenSSL Project +- SqlCipher Project ... In the "Main" project, under "Project" (rather than "Target"), I set

How does one consolidate version management in Ivy, like parent-pom <dependencyManagement> in Maven?

房东的猫 提交于 2019-12-02 07:21:46
We have many projects that need to use common version numbers. What is best practice for doing this with Ant/Ivy? Do you just inherit a wad of properties from Ant that have the version numbers in them, or is there a more formal mechanism a la Maven? As you've pointed out I think this is the problem which the new extends functionality has been designed to solve. To be completely honest I'm not a fan of parent-child modules in Maven.... However, just like you sometimes I want to nail lots of my modules to a common version of Spring. The solution I used was to have a set of properties defined in

Xcode 4: Project does not honor $(inherited) Build Setting in Workspace?

≡放荡痞女 提交于 2019-12-02 06:03:34
Today is my day to suffer through Xcode 4, Workspaces, and Projects. I have a workspace with a few open source libraries (openssl, sqlcipher, and a couple of others). Within the workspace there is one "Main" project which produces an EXE as a target. The open source projects are "subprojects" or "child projects" to the "Main" project. It looks similar to below: Main Project +- OpenSSL Project +- SqlCipher Project ... In the "Main" project, under "Project" (rather than "Target"), I set preprocessor and warning flags build settings . For example, the debug preprocessor macros are "DEBUG=1 SQLITE

Composer. How to install a specific version of package based on user php version?

放肆的年华 提交于 2019-12-02 04:25:21
问题 I have a two version of my package: for php7 and for php5. Is it possible to make composer determine when installing the package which version of php the user has, and depending on this, install the correct version of my package? 回答1: TL;DR: Yes. By default, composer uses the version of the php executable to determine, which version of the package to install. This can be overridden in the config section of composer.json, for example: "config": { "vendor-dir": "vendor", "platform": { "php": "5

Is there a Perl equivalent of Buildout or RVM?

我与影子孤独终老i 提交于 2019-12-02 02:10:34
I've been using Python's Buildout for a while and I really like it. My company has a lot of systems developed in Perl and I'm wondering if there is something similar to either Python's Buildout or Ruby's RVM available for Perl. My goal is to be able to automate deployments, development environment setup, and manage dependencies. I must admit I have heard today the first time about the software you named, but reading the introduction material there is a difference in purpose between Buildout and RVM. An equivalent of the former is Shipwright , of the latter – perlbrew . 来源: https:/

Clojure's :require and Instaparse

心已入冬 提交于 2019-12-02 01:11:25
问题 I am trying to use instaparse lib for my clojure project. I use leiningen 2.0 and clojure 1.5.1 in my project dependencies. I add instaparse to my project dependencies as follow: (defproject bachelor "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojure-contrib "1.2.0"] [instaparse "1.1.0"]]) And that is

Composer. How to install a specific version of package based on user php version?

拟墨画扇 提交于 2019-12-02 00:09:19
I have a two version of my package: for php7 and for php5. Is it possible to make composer determine when installing the package which version of php the user has, and depending on this, install the correct version of my package? TL;DR: Yes. By default, composer uses the version of the php executable to determine, which version of the package to install. This can be overridden in the config section of composer.json, for example: "config": { "vendor-dir": "vendor", "platform": { "php": "5.6" } } When someone requires your package, this version is compared to the one specified in the

Clojure's :require and Instaparse

北城余情 提交于 2019-12-01 20:21:14
I am trying to use instaparse lib for my clojure project. I use leiningen 2.0 and clojure 1.5.1 in my project dependencies. I add instaparse to my project dependencies as follow: (defproject bachelor "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojure-contrib "1.2.0"] [instaparse "1.1.0"]]) And that is my source where i'm trying to require that lib: (ns bachelor.data (:require [clojure.string :as str])

Which pom dependency should I use for jar commons-lang.jar

折月煮酒 提交于 2019-12-01 20:17:26
How do I know which version of a pom dependency I should use if its version is not in the jar name. For example the jar commons-lang.jar, what version of the pom dependency should I use ? Here are its search results on maven central repo - http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22net.sf.staccatocommons%22%20AND%20a%3A%22commons-lang%22 If you are migrating to Maven and just have a bunch of jars then you can try examining their META-INF/MANIFEST.MF files inside of those jars. I've just opened commons-lang.jar and saw the following in its META-INF/MANIFEST.MF : ... Implementation-Title