Tagged Questions
1
vote
1answer
45 views
Does Ivy dependency resolver same as Maven dependency resolver?
I read official manuals about dependency resolution in Maven and Ivy:
http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html
...
1
vote
1answer
696 views
Xcode 4: Project does not honor $(inherited) Build Setting in Workspace?
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 ...
2
votes
1answer
215 views
XCode - Changes to static libraries doesn't cause the build system to relink the executable
I have a project "blackjack" containing a project (as a child) called "GameLib", which in turn contains many projects such as "Core-iOS". I have libCore-iOS.a added to "Link Binary With Libraries," ...
7
votes
2answers
1k views
iPhone Project Dependency Management
Has anyone had any success in finding a reliable, generalised solution for managing dependencies for iPhone projects? I'm looking to split my iPhone applications up into reusable components and then ...
2
votes
1answer
1k views
Ivy custom url resolver
I am trying to create custom resolver in my ivysettings.xml file:
<ivysettings>
<settings defaultResolver="default"/>
<resolvers>
<chain name="default">
...
0
votes
2answers
717 views
Creating a directed acyclic graph out of recursive nmake makefile?
As an exercise and in an effort to (better understand|help other people better understand) the build process at my company, I am hoping to create a directed acyclic graph of the build process.
The ...
6
votes
3answers
925 views
Is there an .NET alternative for Java artifact repositories like Nexus or Artifactory? Where do you store versioned DLL's?
Where to store binaries needed for automatic builds on Team System?
Are you storing them along with the code in the SCM or someplace else? Is having a big amount of binaries in SCM causing any ...
6
votes
4answers
1k views
How can I best share Ant targets between projects?
Is there a well-established way to share Ant targets between projects? I have a solution currently, but it's a bit inelegant. Here's what I'm doing so far.
I've got a file called ivy-tasks.xml hosted ...
6
votes
7answers
793 views
Restrict dependencies between Java packages
What are the possibilities to enforce restrictions on the package dependencies in a Java build system? For example, the myapp.server.bl.Customer class should not be allowed to refer to the ...