licensing

Skipping some license tests in Maven

心不动则不痛 提交于 2019-11-29 02:31:25
问题 I want to skip some license test but in vain. I tried several things such as -Dlicense.skip=true or -Dlicensing or Drat.numUnapprovedLicense=100 . Still it didn't work. How can I skip this process? 回答1: I would suggest to read the documentation which brings up the following: mvn -Drat.ignoreErrors=true package What is also possible to skip it completely via: mvn -Drat.skip=true package 回答2: Run the build with this parameter -Drat.numUnapprovedLicenses=100 回答3: In pom file change version as

What license do I need to use gSOAP in a commercial product? [closed]

淺唱寂寞╮ 提交于 2019-11-29 02:27:19
问题 I'd like to use gSOAP in a product which will be distributed commercially. The use I have in mind is what I suspect is a pretty typical workflow—generating a header using wsdl2h, consuming the header with soapcpp2, and then calling the functions generated in the stub in my code. I'm not 100 percent sure which license(s) I need to use to be able to do this. Has anybody here already gone through this and figured out the solution? 回答1: I hope the following clarification helps. Please contact us

GNU Lesser GPL, application sell? [duplicate]

廉价感情. 提交于 2019-11-29 01:19:21
问题 This question already has answers here : Closed 9 years ago . Possible Duplicate: Using LGPL library in a commercial Java application Hello guys! There is a project under the GNU Lesser GPL license. I want to use this project in my application. Can I sell my application using this license? 回答1: In a nutshell, the idea of LGPL'd projects (usually libraries) is that you are free to use them as you wish in your own application, be it open or closed source, free or proprietary - as long as you

Can I use Visual Studio 2012 Express Edition for commercial use? [closed]

泪湿孤枕 提交于 2019-11-29 00:57:13
I know this question has been asked before for earlier versions of Visual Studio Express (2010 and 2008) However I have not found a concrete answer for the same for Visual Studio Express 2012. I plan to make some small pure C# applications which does not include any other third party libraries. This question talks about 2010 version and VS 2012 RC but not Visual Studio Express 2012 which was released later on. The answer to this question provides a link to an FAQ that does not exist right now. It gets redirected to a page where you can download the latest VS 2012. After some digging I was able

Avoid apk cracked [closed]

我与影子孤独终老i 提交于 2019-11-28 23:22:24
问题 Recently I released an app into Android Market using the licensing system with the ServerManagedPolicy model. Some days ago someone cracked the apk making it always response "Using cached license response" and allow access. How can I avoid that in future apps? Thanks! 回答1: I agree with @Tom van der Woerdt Implement your own licensing library I'd also refer you to check out this from Google I/O 2011: Evading Pirates and Stopping Vampires http://www.youtube.com/watch?v=TnSNCXR9fbY EDIT: The

Intel’s Threading Building Blocks “runtime exception” license: What does it mean? [closed]

爷,独闯天下 提交于 2019-11-28 23:11:12
Just been looking at the threading building blocks, and as their license, they say it's the GPLv2 with the runtime exception . On the Intel page itself they say that the commercial license is the right one if you need commercial support. So what's the deal if I'm doing a commercial, closed source application which uses the TBB, but I don't need commercial support? Can I still use the open source version, or is this a case where I have to buy the commercial one? After all, I assumed that I can use the libstdc++ in a commercial application without restrictions (i.e. link against it). I believe

Finding third party licenses with Nuget

孤街浪徒 提交于 2019-11-28 23:02:48
问题 I'm a bit of a NuGet newbie and have come from the Maven world. Recently I've been tasked with updating the third party licence information for our projects. Working with the Maven projects I've been able to use the license:download-licenses plugin to get the licence information. What I'm wondering is if there is a way to get this information using Nuget? Preferably by using the command line interface so I can automate it at a CI build level. To remove it from the large manual pre build step.

Generating Device-Specific Serial Number [duplicate]

折月煮酒 提交于 2019-11-28 21:33:38
This question already has an answer here: Is there a unique Android device ID? 45 answers I would like to be able to generate unique serial numbers for each Android device for use in unlocking an application. How could I do this? EDIT: The reason is I want to revamp a paid application and provide users who have paid for the old version, which will have a different package name, a way to obtain the full version by downloading an unlockable free version of the application. I would push an update to the old version that would generate and display the code that they could enter to turn the Free

How to prevent usage of expired license through system clock tampering? [closed]

牧云@^-^@ 提交于 2019-11-28 19:32:47
I am currently working on a license manager using java, I will be specifying a start and end date for my application so I can force a licensed user to re-license the program after a certain amount of time. But the problem I am facing is that any one can roll-back their system date and time in order to maintain the validity of license. Is there any way in Java to detect the system date and time is changed. I have already tried Network Time Protocol to get the current date and time from a time server. You likely are storing a license file on the system. a) include the time that the software was

Can pip (or setuptools, distribute etc…) list the license used by each installed package?

末鹿安然 提交于 2019-11-28 18:39:46
I'm trying to audit a Python project with a large number of dependencies and while I can manually look up each project's homepage/license terms, it seems like most OSS packages should already contain the license name and version in their metadata. Unfortunately I can't find any options in pip or easy_install to list more than the package name and installed version (via pip freeze). Does anyone have pointers to a tool to list license metadata for Python packages? You can use pkg_resources : import pkg_resources def get_pkg_license(pkgname): """ Given a package reference (as from requirements